blob: 015fb7b48dfeab66fa42779fc917012b7b0f546d [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
28
Christoph Lametere18b8902006-12-06 20:33:20 -080029static 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
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -040032static void nfs_free_request(struct nfs_page *);
33
Anna Schumaker00bfa302014-05-06 09:12:29 -040034static bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount)
Fred Isaman30dd3742012-04-20 14:47:45 -040035{
36 p->npages = pagecount;
37 if (pagecount <= ARRAY_SIZE(p->page_array))
38 p->pagevec = p->page_array;
39 else {
40 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_KERNEL);
41 if (!p->pagevec)
42 p->npages = 0;
43 }
44 return p->pagevec != NULL;
45}
46
Fred Isaman4db6e0b2012-04-20 14:47:46 -040047void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,
48 struct nfs_pgio_header *hdr,
49 void (*release)(struct nfs_pgio_header *hdr))
50{
51 hdr->req = nfs_list_entry(desc->pg_list.next);
52 hdr->inode = desc->pg_inode;
53 hdr->cred = hdr->req->wb_context->cred;
54 hdr->io_start = req_offset(hdr->req);
55 hdr->good_bytes = desc->pg_count;
Fred Isaman584aa812012-04-20 14:47:51 -040056 hdr->dreq = desc->pg_dreq;
Peng Taof6166382012-08-02 15:36:09 +030057 hdr->layout_private = desc->pg_layout_private;
Fred Isaman4db6e0b2012-04-20 14:47:46 -040058 hdr->release = release;
Fred Isaman061ae2e2012-04-20 14:47:48 -040059 hdr->completion_ops = desc->pg_completion_ops;
Fred Isaman584aa812012-04-20 14:47:51 -040060 if (hdr->completion_ops->init_hdr)
61 hdr->completion_ops->init_hdr(hdr);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040062}
Bryan Schumaker89d77c82012-07-30 16:05:25 -040063EXPORT_SYMBOL_GPL(nfs_pgheader_init);
Fred Isaman4db6e0b2012-04-20 14:47:46 -040064
65void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos)
66{
67 spin_lock(&hdr->lock);
68 if (pos < hdr->io_start + hdr->good_bytes) {
69 set_bit(NFS_IOHDR_ERROR, &hdr->flags);
70 clear_bit(NFS_IOHDR_EOF, &hdr->flags);
71 hdr->good_bytes = pos - hdr->io_start;
72 hdr->error = error;
73 }
74 spin_unlock(&hdr->lock);
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static inline struct nfs_page *
78nfs_page_alloc(void)
79{
Mel Gorman192e5012012-07-31 16:45:16 -070080 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
Jesper Juhl72895b12010-12-09 23:17:15 +010081 if (p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 INIT_LIST_HEAD(&p->wb_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return p;
84}
85
86static inline void
87nfs_page_free(struct nfs_page *p)
88{
89 kmem_cache_free(nfs_page_cachep, p);
90}
91
Trond Myklebust577b4232013-04-08 21:38:12 -040092static void
93nfs_iocounter_inc(struct nfs_io_counter *c)
94{
95 atomic_inc(&c->io_count);
96}
97
98static void
99nfs_iocounter_dec(struct nfs_io_counter *c)
100{
101 if (atomic_dec_and_test(&c->io_count)) {
102 clear_bit(NFS_IO_INPROGRESS, &c->flags);
103 smp_mb__after_clear_bit();
104 wake_up_bit(&c->flags, NFS_IO_INPROGRESS);
105 }
106}
107
108static int
109__nfs_iocounter_wait(struct nfs_io_counter *c)
110{
111 wait_queue_head_t *wq = bit_waitqueue(&c->flags, NFS_IO_INPROGRESS);
112 DEFINE_WAIT_BIT(q, &c->flags, NFS_IO_INPROGRESS);
113 int ret = 0;
114
115 do {
116 prepare_to_wait(wq, &q.wait, TASK_KILLABLE);
117 set_bit(NFS_IO_INPROGRESS, &c->flags);
118 if (atomic_read(&c->io_count) == 0)
119 break;
120 ret = nfs_wait_bit_killable(&c->flags);
121 } while (atomic_read(&c->io_count) != 0);
122 finish_wait(wq, &q.wait);
123 return ret;
124}
125
126/**
127 * nfs_iocounter_wait - wait for i/o to complete
128 * @c: nfs_io_counter to use
129 *
130 * returns -ERESTARTSYS if interrupted by a fatal signal.
131 * Otherwise returns 0 once the io_count hits 0.
132 */
133int
134nfs_iocounter_wait(struct nfs_io_counter *c)
135{
136 if (atomic_read(&c->io_count) == 0)
137 return 0;
138 return __nfs_iocounter_wait(c);
139}
140
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400141/*
142 * nfs_page_group_lock - lock the head of the page group
143 * @req - request in group that is to be locked
144 *
145 * this lock must be held if modifying the page group list
146 */
147void
148nfs_page_group_lock(struct nfs_page *req)
149{
150 struct nfs_page *head = req->wb_head;
151 int err = -EAGAIN;
152
153 WARN_ON_ONCE(head != head->wb_head);
154
155 while (err)
156 err = wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
157 nfs_wait_bit_killable, TASK_KILLABLE);
158}
159
160/*
161 * nfs_page_group_unlock - unlock the head of the page group
162 * @req - request in group that is to be unlocked
163 */
164void
165nfs_page_group_unlock(struct nfs_page *req)
166{
167 struct nfs_page *head = req->wb_head;
168
169 WARN_ON_ONCE(head != head->wb_head);
170
171 smp_mb__before_clear_bit();
172 clear_bit(PG_HEADLOCK, &head->wb_flags);
173 smp_mb__after_clear_bit();
174 wake_up_bit(&head->wb_flags, PG_HEADLOCK);
175}
176
177/*
178 * nfs_page_group_sync_on_bit_locked
179 *
180 * must be called with page group lock held
181 */
182static bool
183nfs_page_group_sync_on_bit_locked(struct nfs_page *req, unsigned int bit)
184{
185 struct nfs_page *head = req->wb_head;
186 struct nfs_page *tmp;
187
188 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_flags));
189 WARN_ON_ONCE(test_and_set_bit(bit, &req->wb_flags));
190
191 tmp = req->wb_this_page;
192 while (tmp != req) {
193 if (!test_bit(bit, &tmp->wb_flags))
194 return false;
195 tmp = tmp->wb_this_page;
196 }
197
198 /* true! reset all bits */
199 tmp = req;
200 do {
201 clear_bit(bit, &tmp->wb_flags);
202 tmp = tmp->wb_this_page;
203 } while (tmp != req);
204
205 return true;
206}
207
208/*
209 * nfs_page_group_sync_on_bit - set bit on current request, but only
210 * return true if the bit is set for all requests in page group
211 * @req - request in page group
212 * @bit - PG_* bit that is used to sync page group
213 */
214bool nfs_page_group_sync_on_bit(struct nfs_page *req, unsigned int bit)
215{
216 bool ret;
217
218 nfs_page_group_lock(req);
219 ret = nfs_page_group_sync_on_bit_locked(req, bit);
220 nfs_page_group_unlock(req);
221
222 return ret;
223}
224
225/*
226 * nfs_page_group_init - Initialize the page group linkage for @req
227 * @req - a new nfs request
228 * @prev - the previous request in page group, or NULL if @req is the first
229 * or only request in the group (the head).
230 */
231static inline void
232nfs_page_group_init(struct nfs_page *req, struct nfs_page *prev)
233{
234 WARN_ON_ONCE(prev == req);
235
236 if (!prev) {
237 req->wb_head = req;
238 req->wb_this_page = req;
239 } else {
240 WARN_ON_ONCE(prev->wb_this_page != prev->wb_head);
241 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &prev->wb_head->wb_flags));
242 req->wb_head = prev->wb_head;
243 req->wb_this_page = prev->wb_this_page;
244 prev->wb_this_page = req;
245
246 /* grab extra ref if head request has extra ref from
247 * the write/commit path to handle handoff between write
248 * and commit lists */
249 if (test_bit(PG_INODE_REF, &prev->wb_head->wb_flags))
250 kref_get(&req->wb_kref);
251 }
252}
253
254/*
255 * nfs_page_group_destroy - sync the destruction of page groups
256 * @req - request that no longer needs the page group
257 *
258 * releases the page group reference from each member once all
259 * members have called this function.
260 */
261static void
262nfs_page_group_destroy(struct kref *kref)
263{
264 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
265 struct nfs_page *tmp, *next;
266
267 if (!nfs_page_group_sync_on_bit(req, PG_TEARDOWN))
268 return;
269
270 tmp = req;
271 do {
272 next = tmp->wb_this_page;
273 /* unlink and free */
274 tmp->wb_this_page = tmp;
275 tmp->wb_head = tmp;
276 nfs_free_request(tmp);
277 tmp = next;
278 } while (tmp != req);
279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/**
282 * nfs_create_request - Create an NFS read/write request.
Chuck Leverc02f5572011-10-25 12:17:43 -0400283 * @ctx: open context to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * @page: page to write
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400285 * @last: last nfs request created for this page group or NULL if head
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * @offset: starting offset within the page for the write
287 * @count: number of bytes to read/write
288 *
289 * The page must be locked by the caller. This makes sure we never
Jason Uhlenkotta19b89c2007-04-26 17:25:51 -0700290 * create two different requests for the same page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * User should ensure it is safe to sleep in this function.
292 */
293struct nfs_page *
Weston Andros Adamson8c8f1ac12014-05-15 11:56:42 -0400294nfs_create_request(struct nfs_open_context *ctx, struct page *page,
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400295 struct nfs_page *last, unsigned int offset,
296 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct nfs_page *req;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400299 struct nfs_lock_context *l_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Trond Myklebustc58c8442013-03-18 19:45:14 -0400301 if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
302 return ERR_PTR(-EBADF);
Trond Myklebust18eb8842010-05-13 12:51:02 -0400303 /* try to allocate the request struct */
304 req = nfs_page_alloc();
305 if (req == NULL)
306 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Jeff Layton015f0212010-10-28 10:10:37 -0400308 /* get lock context early so we can deal with alloc failures */
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400309 l_ctx = nfs_get_lock_context(ctx);
310 if (IS_ERR(l_ctx)) {
Jeff Layton015f0212010-10-28 10:10:37 -0400311 nfs_page_free(req);
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400312 return ERR_CAST(l_ctx);
Jeff Layton015f0212010-10-28 10:10:37 -0400313 }
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400314 req->wb_lock_context = l_ctx;
Trond Myklebust577b4232013-04-08 21:38:12 -0400315 nfs_iocounter_inc(&l_ctx->io_count);
Jeff Layton015f0212010-10-28 10:10:37 -0400316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* Initialize the request struct. Initially, we assume a
318 * long write-back delay. This will be adjusted in
319 * update_nfs_request below if the region is not locked. */
320 req->wb_page = page;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700321 req->wb_index = page_file_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 page_cache_get(page);
323 req->wb_offset = offset;
324 req->wb_pgbase = offset;
325 req->wb_bytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 req->wb_context = get_nfs_open_context(ctx);
Trond Myklebustc03b4022007-06-17 13:26:38 -0400327 kref_init(&req->wb_kref);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400328 nfs_page_group_init(req, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return req;
330}
331
332/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400333 * nfs_unlock_request - Unlock request and wake up sleepers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * @req:
335 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400336void nfs_unlock_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 if (!NFS_WBACK_BUSY(req)) {
339 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
340 BUG();
341 }
342 smp_mb__before_clear_bit();
343 clear_bit(PG_BUSY, &req->wb_flags);
344 smp_mb__after_clear_bit();
Trond Myklebust464a98b2005-06-22 17:16:21 +0000345 wake_up_bit(&req->wb_flags, PG_BUSY);
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400346}
347
348/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400349 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
350 * @req:
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400351 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400352void nfs_unlock_and_release_request(struct nfs_page *req)
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400353{
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400354 nfs_unlock_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 nfs_release_request(req);
356}
357
Trond Myklebust4d65c522011-03-25 14:15:11 -0400358/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 * nfs_clear_request - Free up all resources allocated to the request
360 * @req:
361 *
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500362 * Release page and open context resources associated with a read/write
363 * request after it has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Trond Myklebust4d65c522011-03-25 14:15:11 -0400365static void nfs_clear_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500367 struct page *page = req->wb_page;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500368 struct nfs_open_context *ctx = req->wb_context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400369 struct nfs_lock_context *l_ctx = req->wb_lock_context;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500370
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500371 if (page != NULL) {
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500372 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 req->wb_page = NULL;
374 }
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400375 if (l_ctx != NULL) {
Trond Myklebust577b4232013-04-08 21:38:12 -0400376 nfs_iocounter_dec(&l_ctx->io_count);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400377 nfs_put_lock_context(l_ctx);
378 req->wb_lock_context = NULL;
379 }
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500380 if (ctx != NULL) {
381 put_nfs_open_context(ctx);
382 req->wb_context = NULL;
383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/**
387 * nfs_release_request - Release the count on an NFS read/write request
388 * @req: request to release
389 *
390 * Note: Should never be called with the spinlock held!
391 */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400392static void nfs_free_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400394 WARN_ON_ONCE(req->wb_this_page != req);
395
396 /* extra debug: make sure no sync bits are still set */
397 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500399 /* Release struct file and open context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 nfs_clear_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 nfs_page_free(req);
402}
403
Trond Myklebustc03b4022007-06-17 13:26:38 -0400404void nfs_release_request(struct nfs_page *req)
405{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400406 kref_put(&req->wb_kref, nfs_page_group_destroy);
Trond Myklebustc03b4022007-06-17 13:26:38 -0400407}
408
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500409static int nfs_wait_bit_uninterruptible(void *word)
410{
411 io_schedule();
412 return 0;
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/**
416 * nfs_wait_on_request - Wait for a request to complete.
417 * @req: request to wait upon.
418 *
Matthew Wilcox150030b2007-12-06 16:24:39 -0500419 * Interruptible by fatal signals only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * The user is responsible for holding a count on the request.
421 */
422int
423nfs_wait_on_request(struct nfs_page *req)
424{
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500425 return wait_on_bit(&req->wb_flags, PG_BUSY,
426 nfs_wait_bit_uninterruptible,
427 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400430/*
431 * nfs_generic_pg_test - determine if requests can be coalesced
432 * @desc: pointer to descriptor
433 * @prev: previous request in desc, or NULL
434 * @req: this request
435 *
436 * Returns zero if @req can be coalesced into @desc, otherwise it returns
437 * the size of the request.
438 */
439size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
440 struct nfs_page *prev, struct nfs_page *req)
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300441{
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400442 if (!prev)
443 return req->wb_bytes;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300444 /*
445 * FIXME: ideally we should be able to coalesce all requests
446 * that are not block boundary aligned, but currently this
447 * is problematic for the case of bsize < PAGE_CACHE_SIZE,
448 * since nfs_flush_multi and nfs_pagein_multi assume you
449 * can have only one struct nfs_page.
450 */
451 if (desc->pg_bsize < PAGE_SIZE)
452 return 0;
453
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400454 if (desc->pg_count + req->wb_bytes <= desc->pg_bsize)
455 return req->wb_bytes;
456 return 0;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300457}
Benny Halevy19345cb2011-06-19 18:33:46 -0400458EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300459
Anna Schumaker00bfa302014-05-06 09:12:29 -0400460static inline struct nfs_rw_header *NFS_RW_HEADER(struct nfs_pgio_header *hdr)
461{
462 return container_of(hdr, struct nfs_rw_header, header);
463}
464
465/**
Anna Schumaker4a0de552014-05-06 09:12:30 -0400466 * nfs_rw_header_alloc - Allocate a header for a read or write
467 * @ops: Read or write function vector
468 */
469struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *ops)
470{
471 struct nfs_rw_header *header = ops->rw_alloc_header();
472
473 if (header) {
474 struct nfs_pgio_header *hdr = &header->header;
475
476 INIT_LIST_HEAD(&hdr->pages);
477 INIT_LIST_HEAD(&hdr->rpc_list);
478 spin_lock_init(&hdr->lock);
479 atomic_set(&hdr->refcnt, 0);
480 hdr->rw_ops = ops;
481 }
482 return header;
483}
484EXPORT_SYMBOL_GPL(nfs_rw_header_alloc);
485
486/*
487 * nfs_rw_header_free - Free a read or write header
488 * @hdr: The header to free
489 */
490void nfs_rw_header_free(struct nfs_pgio_header *hdr)
491{
492 hdr->rw_ops->rw_free_header(NFS_RW_HEADER(hdr));
493}
494EXPORT_SYMBOL_GPL(nfs_rw_header_free);
495
496/**
Anna Schumaker00bfa302014-05-06 09:12:29 -0400497 * nfs_pgio_data_alloc - Allocate pageio data
498 * @hdr: The header making a request
499 * @pagecount: Number of pages to create
500 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400501static struct nfs_pgio_data *nfs_pgio_data_alloc(struct nfs_pgio_header *hdr,
502 unsigned int pagecount)
Anna Schumaker00bfa302014-05-06 09:12:29 -0400503{
504 struct nfs_pgio_data *data, *prealloc;
505
506 prealloc = &NFS_RW_HEADER(hdr)->rpc_data;
507 if (prealloc->header == NULL)
508 data = prealloc;
509 else
510 data = kzalloc(sizeof(*data), GFP_KERNEL);
511 if (!data)
512 goto out;
513
514 if (nfs_pgarray_set(&data->pages, pagecount)) {
515 data->header = hdr;
516 atomic_inc(&hdr->refcnt);
517 } else {
518 if (data != prealloc)
519 kfree(data);
520 data = NULL;
521 }
522out:
523 return data;
524}
525
526/**
527 * nfs_pgio_data_release - Properly free pageio data
528 * @data: The data to release
529 */
530void nfs_pgio_data_release(struct nfs_pgio_data *data)
531{
532 struct nfs_pgio_header *hdr = data->header;
533 struct nfs_rw_header *pageio_header = NFS_RW_HEADER(hdr);
534
535 put_nfs_open_context(data->args.context);
536 if (data->pages.pagevec != data->pages.page_array)
537 kfree(data->pages.pagevec);
538 if (data == &pageio_header->rpc_data) {
539 data->header = NULL;
540 data = NULL;
541 }
542 if (atomic_dec_and_test(&hdr->refcnt))
543 hdr->completion_ops->completion(hdr);
544 /* Note: we only free the rpc_task after callbacks are done.
545 * See the comment in rpc_free_task() for why
546 */
547 kfree(data);
548}
549EXPORT_SYMBOL_GPL(nfs_pgio_data_release);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/**
Anna Schumakerce595152014-05-06 09:12:34 -0400552 * nfs_pgio_rpcsetup - Set up arguments for a pageio call
553 * @data: The pageio data
554 * @count: Number of bytes to read
555 * @offset: Initial offset
556 * @how: How to commit data (writes only)
557 * @cinfo: Commit information for the call (writes only)
558 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400559static void nfs_pgio_rpcsetup(struct nfs_pgio_data *data,
Anna Schumakerce595152014-05-06 09:12:34 -0400560 unsigned int count, unsigned int offset,
561 int how, struct nfs_commit_info *cinfo)
562{
563 struct nfs_page *req = data->header->req;
564
565 /* Set up the RPC argument and reply structs
566 * NB: take care not to mess about with data->commit et al. */
567
568 data->args.fh = NFS_FH(data->header->inode);
569 data->args.offset = req_offset(req) + offset;
570 /* pnfs_set_layoutcommit needs this */
571 data->mds_offset = data->args.offset;
572 data->args.pgbase = req->wb_pgbase + offset;
573 data->args.pages = data->pages.pagevec;
574 data->args.count = count;
575 data->args.context = get_nfs_open_context(req->wb_context);
576 data->args.lock_context = req->wb_lock_context;
577 data->args.stable = NFS_UNSTABLE;
578 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
579 case 0:
580 break;
581 case FLUSH_COND_STABLE:
582 if (nfs_reqs_to_commit(cinfo))
583 break;
584 default:
585 data->args.stable = NFS_FILE_SYNC;
586 }
587
588 data->res.fattr = &data->fattr;
589 data->res.count = count;
590 data->res.eof = 0;
591 data->res.verf = &data->verf;
592 nfs_fattr_init(&data->fattr);
593}
594
595/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400596 * nfs_pgio_prepare - Prepare pageio data to go over the wire
597 * @task: The current task
598 * @calldata: pageio data to prepare
599 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400600static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400601{
602 struct nfs_pgio_data *data = calldata;
603 int err;
604 err = NFS_PROTO(data->header->inode)->pgio_rpc_prepare(task, data);
605 if (err)
606 rpc_exit(task, err);
607}
608
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400609int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_data *data,
610 const struct rpc_call_ops *call_ops, int how, int flags)
611{
612 struct rpc_task *task;
613 struct rpc_message msg = {
614 .rpc_argp = &data->args,
615 .rpc_resp = &data->res,
616 .rpc_cred = data->header->cred,
617 };
618 struct rpc_task_setup task_setup_data = {
619 .rpc_client = clnt,
620 .task = &data->task,
621 .rpc_message = &msg,
622 .callback_ops = call_ops,
623 .callback_data = data,
624 .workqueue = nfsiod_workqueue,
625 .flags = RPC_TASK_ASYNC | flags,
626 };
627 int ret = 0;
628
629 data->header->rw_ops->rw_initiate(data, &msg, &task_setup_data, how);
630
631 dprintk("NFS: %5u initiated pgio call "
632 "(req %s/%llu, %u bytes @ offset %llu)\n",
633 data->task.tk_pid,
634 data->header->inode->i_sb->s_id,
635 (unsigned long long)NFS_FILEID(data->header->inode),
636 data->args.count,
637 (unsigned long long)data->args.offset);
638
639 task = rpc_run_task(&task_setup_data);
640 if (IS_ERR(task)) {
641 ret = PTR_ERR(task);
642 goto out;
643 }
644 if (how & FLUSH_SYNC) {
645 ret = rpc_wait_for_completion_task(task);
646 if (ret == 0)
647 ret = task->tk_status;
648 }
649 rpc_put_task(task);
650out:
651 return ret;
652}
653EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
654
Anna Schumakercf485fc2014-05-06 09:12:39 -0400655static int nfs_do_multiple_pgios(struct list_head *head,
Anna Schumakerc3766272014-05-06 09:12:38 -0400656 const struct rpc_call_ops *call_ops,
657 int how)
658{
659 struct nfs_pgio_data *data;
660 int ret = 0;
661
662 while (!list_empty(head)) {
663 int ret2;
664
665 data = list_first_entry(head, struct nfs_pgio_data, list);
666 list_del_init(&data->list);
667
668 ret2 = nfs_initiate_pgio(NFS_CLIENT(data->header->inode),
669 data, call_ops, how, 0);
670 if (ret == 0)
671 ret = ret2;
672 }
673 return ret;
674}
675
Anna Schumakera4cdda52014-05-06 09:12:31 -0400676/**
Anna Schumaker844c9e62014-05-06 09:12:35 -0400677 * nfs_pgio_error - Clean up from a pageio error
678 * @desc: IO descriptor
679 * @hdr: pageio header
680 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400681static int nfs_pgio_error(struct nfs_pageio_descriptor *desc,
Anna Schumaker844c9e62014-05-06 09:12:35 -0400682 struct nfs_pgio_header *hdr)
683{
684 struct nfs_pgio_data *data;
685
686 set_bit(NFS_IOHDR_REDO, &hdr->flags);
687 while (!list_empty(&hdr->rpc_list)) {
688 data = list_first_entry(&hdr->rpc_list, struct nfs_pgio_data, list);
689 list_del(&data->list);
690 nfs_pgio_data_release(data);
691 }
692 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
693 return -ENOMEM;
694}
695
696/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400697 * nfs_pgio_release - Release pageio data
698 * @calldata: The pageio data to release
699 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400700static void nfs_pgio_release(void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400701{
702 struct nfs_pgio_data *data = calldata;
703 if (data->header->rw_ops->rw_release)
704 data->header->rw_ops->rw_release(data);
705 nfs_pgio_data_release(data);
706}
707
708/**
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400709 * nfs_pageio_init - initialise a page io descriptor
710 * @desc: pointer to descriptor
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400711 * @inode: pointer to inode
712 * @doio: pointer to io function
713 * @bsize: io block size
714 * @io_flags: extra parameters for the io function
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400715 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400716void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
717 struct inode *inode,
Trond Myklebust1751c362011-06-10 13:30:23 -0400718 const struct nfs_pageio_ops *pg_ops,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400719 const struct nfs_pgio_completion_ops *compl_ops,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400720 const struct nfs_rw_ops *rw_ops,
Trond Myklebust84dde762007-05-04 14:44:06 -0400721 size_t bsize,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400722 int io_flags)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400723{
724 INIT_LIST_HEAD(&desc->pg_list);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400725 desc->pg_bytes_written = 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400726 desc->pg_count = 0;
727 desc->pg_bsize = bsize;
728 desc->pg_base = 0;
Trond Myklebustb31268a2011-03-21 17:02:00 -0400729 desc->pg_moreio = 0;
Trond Myklebustd9156f92011-07-12 13:42:02 -0400730 desc->pg_recoalesce = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400731 desc->pg_inode = inode;
Trond Myklebust1751c362011-06-10 13:30:23 -0400732 desc->pg_ops = pg_ops;
Fred Isaman061ae2e2012-04-20 14:47:48 -0400733 desc->pg_completion_ops = compl_ops;
Anna Schumaker4a0de552014-05-06 09:12:30 -0400734 desc->pg_rw_ops = rw_ops;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400735 desc->pg_ioflags = io_flags;
736 desc->pg_error = 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000737 desc->pg_lseg = NULL;
Fred Isaman584aa812012-04-20 14:47:51 -0400738 desc->pg_dreq = NULL;
Peng Taof6166382012-08-02 15:36:09 +0300739 desc->pg_layout_private = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400740}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400741EXPORT_SYMBOL_GPL(nfs_pageio_init);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400742
Anna Schumaker0eecb212014-05-06 09:12:32 -0400743/**
744 * nfs_pgio_result - Basic pageio error handling
745 * @task: The task that ran
746 * @calldata: Pageio data to check
747 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400748static void nfs_pgio_result(struct rpc_task *task, void *calldata)
Anna Schumaker0eecb212014-05-06 09:12:32 -0400749{
750 struct nfs_pgio_data *data = calldata;
751 struct inode *inode = data->header->inode;
752
753 dprintk("NFS: %s: %5u, (status %d)\n", __func__,
754 task->tk_pid, task->tk_status);
755
756 if (data->header->rw_ops->rw_done(task, data, inode) != 0)
757 return;
758 if (task->tk_status < 0)
759 nfs_set_pgio_error(data->header, task->tk_status, data->args.offset);
760 else
761 data->header->rw_ops->rw_result(task, data);
762}
763
Anna Schumakeref2c4882014-05-06 09:12:36 -0400764/*
765 * Generate multiple small requests to read or write a single
766 * contiguous dirty on one page.
767 */
768static int nfs_pgio_multi(struct nfs_pageio_descriptor *desc,
769 struct nfs_pgio_header *hdr)
770{
771 struct nfs_page *req = hdr->req;
772 struct page *page = req->wb_page;
773 struct nfs_pgio_data *data;
774 size_t wsize = desc->pg_bsize, nbytes;
775 unsigned int offset;
776 int requests = 0;
777 struct nfs_commit_info cinfo;
778
779 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
780
781 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
782 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo) ||
783 desc->pg_count > wsize))
784 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
785
786 offset = 0;
787 nbytes = desc->pg_count;
788 do {
789 size_t len = min(nbytes, wsize);
790
791 data = nfs_pgio_data_alloc(hdr, 1);
792 if (!data)
793 return nfs_pgio_error(desc, hdr);
794 data->pages.pagevec[0] = page;
795 nfs_pgio_rpcsetup(data, len, offset, desc->pg_ioflags, &cinfo);
796 list_add(&data->list, &hdr->rpc_list);
797 requests++;
798 nbytes -= len;
799 offset += len;
800 } while (nbytes != 0);
801
802 nfs_list_remove_request(req);
803 nfs_list_add_request(req, &hdr->pages);
804 desc->pg_rpc_callops = &nfs_pgio_common_ops;
805 return 0;
806}
807
808/*
809 * Create an RPC task for the given read or write request and kick it.
810 * The page must have been locked by the caller.
811 *
812 * It may happen that the page we're passed is not marked dirty.
813 * This is the case if nfs_updatepage detects a conflicting request
814 * that has been written but not committed.
815 */
816static int nfs_pgio_one(struct nfs_pageio_descriptor *desc,
817 struct nfs_pgio_header *hdr)
818{
819 struct nfs_page *req;
820 struct page **pages;
821 struct nfs_pgio_data *data;
822 struct list_head *head = &desc->pg_list;
823 struct nfs_commit_info cinfo;
824
825 data = nfs_pgio_data_alloc(hdr, nfs_page_array_len(desc->pg_base,
826 desc->pg_count));
827 if (!data)
828 return nfs_pgio_error(desc, hdr);
829
830 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
831 pages = data->pages.pagevec;
832 while (!list_empty(head)) {
833 req = nfs_list_entry(head->next);
834 nfs_list_remove_request(req);
835 nfs_list_add_request(req, &hdr->pages);
836 *pages++ = req->wb_page;
837 }
838
839 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
840 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo)))
841 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
842
843 /* Set up the argument struct */
844 nfs_pgio_rpcsetup(data, desc->pg_count, 0, desc->pg_ioflags, &cinfo);
845 list_add(&data->list, &hdr->rpc_list);
846 desc->pg_rpc_callops = &nfs_pgio_common_ops;
847 return 0;
848}
849
Anna Schumaker41d8d5b2014-05-06 09:12:40 -0400850static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
Anna Schumakercf485fc2014-05-06 09:12:39 -0400851{
852 struct nfs_rw_header *rw_hdr;
853 struct nfs_pgio_header *hdr;
854 int ret;
855
856 rw_hdr = nfs_rw_header_alloc(desc->pg_rw_ops);
857 if (!rw_hdr) {
858 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
859 return -ENOMEM;
860 }
861 hdr = &rw_hdr->header;
862 nfs_pgheader_init(desc, hdr, nfs_rw_header_free);
863 atomic_inc(&hdr->refcnt);
864 ret = nfs_generic_pgio(desc, hdr);
865 if (ret == 0)
866 ret = nfs_do_multiple_pgios(&hdr->rpc_list,
867 desc->pg_rpc_callops,
868 desc->pg_ioflags);
869 if (atomic_dec_and_test(&hdr->refcnt))
870 hdr->completion_ops->completion(hdr);
871 return ret;
872}
873
Anna Schumakeref2c4882014-05-06 09:12:36 -0400874int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
875 struct nfs_pgio_header *hdr)
876{
877 if (desc->pg_bsize < PAGE_CACHE_SIZE)
878 return nfs_pgio_multi(desc, hdr);
879 return nfs_pgio_one(desc, hdr);
880}
881EXPORT_SYMBOL_GPL(nfs_generic_pgio);
882
Trond Myklebust4109bb72013-09-06 11:09:38 -0400883static bool nfs_match_open_context(const struct nfs_open_context *ctx1,
884 const struct nfs_open_context *ctx2)
885{
886 return ctx1->cred == ctx2->cred && ctx1->state == ctx2->state;
887}
888
889static bool nfs_match_lock_context(const struct nfs_lock_context *l1,
890 const struct nfs_lock_context *l2)
891{
892 return l1->lockowner.l_owner == l2->lockowner.l_owner
893 && l1->lockowner.l_pid == l2->lockowner.l_pid;
894}
895
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400896/**
897 * nfs_can_coalesce_requests - test two requests for compatibility
898 * @prev: pointer to nfs_page
899 * @req: pointer to nfs_page
900 *
901 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
902 * page data area they describe is contiguous, and that their RPC
903 * credentials, NFSv4 open state, and lockowners are the same.
904 *
905 * Return 'true' if this is the case, else return 'false'.
906 */
Benny Halevy18ad0a92011-05-25 21:03:56 +0300907static bool nfs_can_coalesce_requests(struct nfs_page *prev,
908 struct nfs_page *req,
909 struct nfs_pageio_descriptor *pgio)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400910{
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400911 size_t size;
912
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400913 if (prev) {
914 if (!nfs_match_open_context(req->wb_context, prev->wb_context))
915 return false;
916 if (req->wb_context->dentry->d_inode->i_flock != NULL &&
917 !nfs_match_lock_context(req->wb_lock_context,
918 prev->wb_lock_context))
919 return false;
920 if (req->wb_pgbase != 0)
921 return false;
922 if (prev->wb_pgbase + prev->wb_bytes != PAGE_CACHE_SIZE)
923 return false;
924 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
925 return false;
926 }
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400927 size = pgio->pg_ops->pg_test(pgio, prev, req);
928 WARN_ON_ONCE(size && size != req->wb_bytes);
929 return size > 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400930}
931
932/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400933 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400934 * @desc: destination io descriptor
935 * @req: request
936 *
937 * Returns true if the request 'req' was successfully coalesced into the
938 * existing list of pages 'desc'.
939 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400940static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
941 struct nfs_page *req)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400942{
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400943 struct nfs_page *prev = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400944 if (desc->pg_count != 0) {
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400945 prev = nfs_list_entry(desc->pg_list.prev);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300946 } else {
Trond Myklebustd8007d42011-06-10 13:30:23 -0400947 if (desc->pg_ops->pg_init)
948 desc->pg_ops->pg_init(desc, req);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400949 desc->pg_base = req->wb_pgbase;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300950 }
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400951 if (!nfs_can_coalesce_requests(prev, req, desc))
952 return 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400953 nfs_list_remove_request(req);
954 nfs_list_add_request(req, &desc->pg_list);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300955 desc->pg_count += req->wb_bytes;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400956 return 1;
957}
958
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400959/*
960 * Helper for nfs_pageio_add_request and nfs_pageio_complete
961 */
962static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
963{
964 if (!list_empty(&desc->pg_list)) {
Trond Myklebust1751c362011-06-10 13:30:23 -0400965 int error = desc->pg_ops->pg_doio(desc);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400966 if (error < 0)
967 desc->pg_error = error;
968 else
969 desc->pg_bytes_written += desc->pg_count;
970 }
971 if (list_empty(&desc->pg_list)) {
972 desc->pg_count = 0;
973 desc->pg_base = 0;
974 }
975}
976
977/**
978 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
979 * @desc: destination io descriptor
980 * @req: request
981 *
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400982 * This may split a request into subrequests which are all part of the
983 * same page group.
984 *
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400985 * Returns true if the request 'req' was successfully coalesced into the
986 * existing list of pages 'desc'.
987 */
Trond Myklebustd9156f92011-07-12 13:42:02 -0400988static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400989 struct nfs_page *req)
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400990{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400991 struct nfs_page *subreq;
992 unsigned int bytes_left = 0;
993 unsigned int offset, pgbase;
994
995 nfs_page_group_lock(req);
996
997 subreq = req;
998 bytes_left = subreq->wb_bytes;
999 offset = subreq->wb_offset;
1000 pgbase = subreq->wb_pgbase;
1001
1002 do {
1003 if (!nfs_pageio_do_add_request(desc, subreq)) {
1004 /* make sure pg_test call(s) did nothing */
1005 WARN_ON_ONCE(subreq->wb_bytes != bytes_left);
1006 WARN_ON_ONCE(subreq->wb_offset != offset);
1007 WARN_ON_ONCE(subreq->wb_pgbase != pgbase);
1008
1009 nfs_page_group_unlock(req);
1010 desc->pg_moreio = 1;
1011 nfs_pageio_doio(desc);
1012 if (desc->pg_error < 0)
1013 return 0;
1014 desc->pg_moreio = 0;
1015 if (desc->pg_recoalesce)
1016 return 0;
1017 /* retry add_request for this subreq */
1018 nfs_page_group_lock(req);
1019 continue;
1020 }
1021
1022 /* check for buggy pg_test call(s) */
1023 WARN_ON_ONCE(subreq->wb_bytes + subreq->wb_pgbase > PAGE_SIZE);
1024 WARN_ON_ONCE(subreq->wb_bytes > bytes_left);
1025 WARN_ON_ONCE(subreq->wb_bytes == 0);
1026
1027 bytes_left -= subreq->wb_bytes;
1028 offset += subreq->wb_bytes;
1029 pgbase += subreq->wb_bytes;
1030
1031 if (bytes_left) {
1032 subreq = nfs_create_request(req->wb_context,
1033 req->wb_page,
1034 subreq, pgbase, bytes_left);
1035 nfs_lock_request(subreq);
1036 subreq->wb_offset = offset;
1037 subreq->wb_index = req->wb_index;
1038 }
1039 } while (bytes_left > 0);
1040
1041 nfs_page_group_unlock(req);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001042 return 1;
1043}
1044
Trond Myklebustd9156f92011-07-12 13:42:02 -04001045static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
1046{
1047 LIST_HEAD(head);
1048
1049 do {
1050 list_splice_init(&desc->pg_list, &head);
1051 desc->pg_bytes_written -= desc->pg_count;
1052 desc->pg_count = 0;
1053 desc->pg_base = 0;
1054 desc->pg_recoalesce = 0;
1055
1056 while (!list_empty(&head)) {
1057 struct nfs_page *req;
1058
1059 req = list_first_entry(&head, struct nfs_page, wb_list);
1060 nfs_list_remove_request(req);
1061 if (__nfs_pageio_add_request(desc, req))
1062 continue;
1063 if (desc->pg_error < 0)
1064 return 0;
1065 break;
1066 }
1067 } while (desc->pg_recoalesce);
1068 return 1;
1069}
1070
1071int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
1072 struct nfs_page *req)
1073{
1074 int ret;
1075
1076 do {
1077 ret = __nfs_pageio_add_request(desc, req);
1078 if (ret)
1079 break;
1080 if (desc->pg_error < 0)
1081 break;
1082 ret = nfs_do_recoalesce(desc);
1083 } while (ret);
1084 return ret;
1085}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001086EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
Trond Myklebustd9156f92011-07-12 13:42:02 -04001087
Trond Myklebustd8a5ad72007-04-02 18:48:28 -04001088/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001089 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
1090 * @desc: pointer to io descriptor
1091 */
1092void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1093{
Trond Myklebustd9156f92011-07-12 13:42:02 -04001094 for (;;) {
1095 nfs_pageio_doio(desc);
1096 if (!desc->pg_recoalesce)
1097 break;
1098 if (!nfs_do_recoalesce(desc))
1099 break;
1100 }
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001101}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001102EXPORT_SYMBOL_GPL(nfs_pageio_complete);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001103
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001104/**
1105 * nfs_pageio_cond_complete - Conditional I/O completion
1106 * @desc: pointer to io descriptor
1107 * @index: page index
1108 *
1109 * It is important to ensure that processes don't try to take locks
1110 * on non-contiguous ranges of pages as that might deadlock. This
1111 * function should be called before attempting to wait on a locked
1112 * nfs_page. It will complete the I/O if the page index 'index'
1113 * is not contiguous with the existing list of pages in 'desc'.
1114 */
1115void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
1116{
1117 if (!list_empty(&desc->pg_list)) {
1118 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
1119 if (index != prev->wb_index + 1)
Trond Myklebustd9156f92011-07-12 13:42:02 -04001120 nfs_pageio_complete(desc);
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001121 }
1122}
1123
David Howellsf7b422b2006-06-09 09:34:33 -04001124int __init nfs_init_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 nfs_page_cachep = kmem_cache_create("nfs_page",
1127 sizeof(struct nfs_page),
1128 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001129 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (nfs_page_cachep == NULL)
1131 return -ENOMEM;
1132
1133 return 0;
1134}
1135
David Brownell266bee82006-06-27 12:59:15 -07001136void nfs_destroy_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001138 kmem_cache_destroy(nfs_page_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
Anna Schumakeref2c4882014-05-06 09:12:36 -04001141static const struct rpc_call_ops nfs_pgio_common_ops = {
Anna Schumaker6f92fa42014-05-06 09:12:33 -04001142 .rpc_call_prepare = nfs_pgio_prepare,
1143 .rpc_call_done = nfs_pgio_result,
1144 .rpc_release = nfs_pgio_release,
1145};
Anna Schumaker41d8d5b2014-05-06 09:12:40 -04001146
1147const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1148 .pg_test = nfs_generic_pg_test,
1149 .pg_doio = nfs_generic_pg_pgios,
1150};