blob: 05a63593a61fb88647a1be6a73508fe07b86d6d6 [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
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);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100103 smp_mb__after_atomic();
Trond Myklebust577b4232013-04-08 21:38:12 -0400104 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
Trond Myklebustf8680892014-05-29 11:45:57 -0400141static int nfs_wait_bit_uninterruptible(void *word)
142{
143 io_schedule();
144 return 0;
145}
146
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400147/*
148 * nfs_page_group_lock - lock the head of the page group
149 * @req - request in group that is to be locked
150 *
151 * this lock must be held if modifying the page group list
152 */
153void
154nfs_page_group_lock(struct nfs_page *req)
155{
156 struct nfs_page *head = req->wb_head;
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400157
158 WARN_ON_ONCE(head != head->wb_head);
159
Trond Myklebustf8680892014-05-29 11:45:57 -0400160 wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
161 nfs_wait_bit_uninterruptible,
162 TASK_UNINTERRUPTIBLE);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400163}
164
165/*
166 * nfs_page_group_unlock - unlock the head of the page group
167 * @req - request in group that is to be unlocked
168 */
169void
170nfs_page_group_unlock(struct nfs_page *req)
171{
172 struct nfs_page *head = req->wb_head;
173
174 WARN_ON_ONCE(head != head->wb_head);
175
Linus Torvaldsd1e1cda2014-06-10 15:02:42 -0700176 smp_mb__before_atomic();
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400177 clear_bit(PG_HEADLOCK, &head->wb_flags);
Linus Torvaldsd1e1cda2014-06-10 15:02:42 -0700178 smp_mb__after_atomic();
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400179 wake_up_bit(&head->wb_flags, PG_HEADLOCK);
180}
181
182/*
183 * nfs_page_group_sync_on_bit_locked
184 *
185 * must be called with page group lock held
186 */
187static bool
188nfs_page_group_sync_on_bit_locked(struct nfs_page *req, unsigned int bit)
189{
190 struct nfs_page *head = req->wb_head;
191 struct nfs_page *tmp;
192
193 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_flags));
194 WARN_ON_ONCE(test_and_set_bit(bit, &req->wb_flags));
195
196 tmp = req->wb_this_page;
197 while (tmp != req) {
198 if (!test_bit(bit, &tmp->wb_flags))
199 return false;
200 tmp = tmp->wb_this_page;
201 }
202
203 /* true! reset all bits */
204 tmp = req;
205 do {
206 clear_bit(bit, &tmp->wb_flags);
207 tmp = tmp->wb_this_page;
208 } while (tmp != req);
209
210 return true;
211}
212
213/*
214 * nfs_page_group_sync_on_bit - set bit on current request, but only
215 * return true if the bit is set for all requests in page group
216 * @req - request in page group
217 * @bit - PG_* bit that is used to sync page group
218 */
219bool nfs_page_group_sync_on_bit(struct nfs_page *req, unsigned int bit)
220{
221 bool ret;
222
223 nfs_page_group_lock(req);
224 ret = nfs_page_group_sync_on_bit_locked(req, bit);
225 nfs_page_group_unlock(req);
226
227 return ret;
228}
229
230/*
231 * nfs_page_group_init - Initialize the page group linkage for @req
232 * @req - a new nfs request
233 * @prev - the previous request in page group, or NULL if @req is the first
234 * or only request in the group (the head).
235 */
236static inline void
237nfs_page_group_init(struct nfs_page *req, struct nfs_page *prev)
238{
239 WARN_ON_ONCE(prev == req);
240
241 if (!prev) {
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400242 /* a head request */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400243 req->wb_head = req;
244 req->wb_this_page = req;
245 } else {
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400246 /* a subrequest */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400247 WARN_ON_ONCE(prev->wb_this_page != prev->wb_head);
248 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &prev->wb_head->wb_flags));
249 req->wb_head = prev->wb_head;
250 req->wb_this_page = prev->wb_this_page;
251 prev->wb_this_page = req;
252
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400253 /* All subrequests take a ref on the head request until
254 * nfs_page_group_destroy is called */
255 kref_get(&req->wb_head->wb_kref);
256
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400257 /* grab extra ref if head request has extra ref from
258 * the write/commit path to handle handoff between write
259 * and commit lists */
Weston Andros Adamson17089a22014-07-11 10:20:45 -0400260 if (test_bit(PG_INODE_REF, &prev->wb_head->wb_flags)) {
261 set_bit(PG_INODE_REF, &req->wb_flags);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400262 kref_get(&req->wb_kref);
Weston Andros Adamson17089a22014-07-11 10:20:45 -0400263 }
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400264 }
265}
266
267/*
268 * nfs_page_group_destroy - sync the destruction of page groups
269 * @req - request that no longer needs the page group
270 *
271 * releases the page group reference from each member once all
272 * members have called this function.
273 */
274static void
275nfs_page_group_destroy(struct kref *kref)
276{
277 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
278 struct nfs_page *tmp, *next;
279
Weston Andros Adamson85710a82014-07-11 10:20:46 -0400280 /* subrequests must release the ref on the head request */
281 if (req->wb_head != req)
282 nfs_release_request(req->wb_head);
283
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400284 if (!nfs_page_group_sync_on_bit(req, PG_TEARDOWN))
285 return;
286
287 tmp = req;
288 do {
289 next = tmp->wb_this_page;
290 /* unlink and free */
291 tmp->wb_this_page = tmp;
292 tmp->wb_head = tmp;
293 nfs_free_request(tmp);
294 tmp = next;
295 } while (tmp != req);
296}
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/**
299 * nfs_create_request - Create an NFS read/write request.
Chuck Leverc02f5572011-10-25 12:17:43 -0400300 * @ctx: open context to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * @page: page to write
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400302 * @last: last nfs request created for this page group or NULL if head
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * @offset: starting offset within the page for the write
304 * @count: number of bytes to read/write
305 *
306 * The page must be locked by the caller. This makes sure we never
Jason Uhlenkotta19b89c2007-04-26 17:25:51 -0700307 * create two different requests for the same page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * User should ensure it is safe to sleep in this function.
309 */
310struct nfs_page *
Weston Andros Adamson8c8f1ac12014-05-15 11:56:42 -0400311nfs_create_request(struct nfs_open_context *ctx, struct page *page,
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400312 struct nfs_page *last, unsigned int offset,
313 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct nfs_page *req;
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400316 struct nfs_lock_context *l_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Trond Myklebustc58c8442013-03-18 19:45:14 -0400318 if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
319 return ERR_PTR(-EBADF);
Trond Myklebust18eb8842010-05-13 12:51:02 -0400320 /* try to allocate the request struct */
321 req = nfs_page_alloc();
322 if (req == NULL)
323 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Jeff Layton015f0212010-10-28 10:10:37 -0400325 /* get lock context early so we can deal with alloc failures */
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400326 l_ctx = nfs_get_lock_context(ctx);
327 if (IS_ERR(l_ctx)) {
Jeff Layton015f0212010-10-28 10:10:37 -0400328 nfs_page_free(req);
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400329 return ERR_CAST(l_ctx);
Jeff Layton015f0212010-10-28 10:10:37 -0400330 }
Trond Myklebustb3c54de2012-08-13 17:15:50 -0400331 req->wb_lock_context = l_ctx;
Trond Myklebust577b4232013-04-08 21:38:12 -0400332 nfs_iocounter_inc(&l_ctx->io_count);
Jeff Layton015f0212010-10-28 10:10:37 -0400333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* Initialize the request struct. Initially, we assume a
335 * long write-back delay. This will be adjusted in
336 * update_nfs_request below if the region is not locked. */
337 req->wb_page = page;
Mel Gormand56b4dd2012-07-31 16:45:06 -0700338 req->wb_index = page_file_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 page_cache_get(page);
340 req->wb_offset = offset;
341 req->wb_pgbase = offset;
342 req->wb_bytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 req->wb_context = get_nfs_open_context(ctx);
Trond Myklebustc03b4022007-06-17 13:26:38 -0400344 kref_init(&req->wb_kref);
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400345 nfs_page_group_init(req, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return req;
347}
348
349/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400350 * nfs_unlock_request - Unlock request and wake up sleepers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * @req:
352 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400353void nfs_unlock_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 if (!NFS_WBACK_BUSY(req)) {
356 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
357 BUG();
358 }
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100359 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 clear_bit(PG_BUSY, &req->wb_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100361 smp_mb__after_atomic();
Trond Myklebust464a98b2005-06-22 17:16:21 +0000362 wake_up_bit(&req->wb_flags, PG_BUSY);
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400363}
364
365/**
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400366 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
367 * @req:
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400368 */
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400369void nfs_unlock_and_release_request(struct nfs_page *req)
Trond Myklebust3aff4eb2012-05-09 14:30:35 -0400370{
Trond Myklebust1d1afcb2012-05-09 14:04:55 -0400371 nfs_unlock_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 nfs_release_request(req);
373}
374
Trond Myklebust4d65c522011-03-25 14:15:11 -0400375/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 * nfs_clear_request - Free up all resources allocated to the request
377 * @req:
378 *
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500379 * Release page and open context resources associated with a read/write
380 * request after it has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 */
Trond Myklebust4d65c522011-03-25 14:15:11 -0400382static void nfs_clear_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500384 struct page *page = req->wb_page;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500385 struct nfs_open_context *ctx = req->wb_context;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400386 struct nfs_lock_context *l_ctx = req->wb_lock_context;
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500387
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500388 if (page != NULL) {
Trond Myklebustcd52ed32006-03-20 13:44:04 -0500389 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 req->wb_page = NULL;
391 }
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400392 if (l_ctx != NULL) {
Trond Myklebust577b4232013-04-08 21:38:12 -0400393 nfs_iocounter_dec(&l_ctx->io_count);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400394 nfs_put_lock_context(l_ctx);
395 req->wb_lock_context = NULL;
396 }
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500397 if (ctx != NULL) {
398 put_nfs_open_context(ctx);
399 req->wb_context = NULL;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/**
404 * nfs_release_request - Release the count on an NFS read/write request
405 * @req: request to release
406 *
407 * Note: Should never be called with the spinlock held!
408 */
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400409static void nfs_free_request(struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400411 WARN_ON_ONCE(req->wb_this_page != req);
412
413 /* extra debug: make sure no sync bits are still set */
414 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
Weston Andros Adamson67d03382014-05-15 11:56:46 -0400415 WARN_ON_ONCE(test_bit(PG_UNLOCKPAGE, &req->wb_flags));
416 WARN_ON_ONCE(test_bit(PG_UPTODATE, &req->wb_flags));
Weston Andros Adamson20633f02014-05-15 11:56:47 -0400417 WARN_ON_ONCE(test_bit(PG_WB_END, &req->wb_flags));
418 WARN_ON_ONCE(test_bit(PG_REMOVE, &req->wb_flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Trond Myklebustbb6fbc42010-03-11 09:19:35 -0500420 /* Release struct file and open context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 nfs_clear_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 nfs_page_free(req);
423}
424
Trond Myklebustc03b4022007-06-17 13:26:38 -0400425void nfs_release_request(struct nfs_page *req)
426{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400427 kref_put(&req->wb_kref, nfs_page_group_destroy);
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/**
431 * nfs_wait_on_request - Wait for a request to complete.
432 * @req: request to wait upon.
433 *
Matthew Wilcox150030b2007-12-06 16:24:39 -0500434 * Interruptible by fatal signals only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * The user is responsible for holding a count on the request.
436 */
437int
438nfs_wait_on_request(struct nfs_page *req)
439{
Trond Myklebust9f557cd2010-02-03 08:27:22 -0500440 return wait_on_bit(&req->wb_flags, PG_BUSY,
441 nfs_wait_bit_uninterruptible,
442 TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400445/*
446 * nfs_generic_pg_test - determine if requests can be coalesced
447 * @desc: pointer to descriptor
448 * @prev: previous request in desc, or NULL
449 * @req: this request
450 *
451 * Returns zero if @req can be coalesced into @desc, otherwise it returns
452 * the size of the request.
453 */
454size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
455 struct nfs_page *prev, struct nfs_page *req)
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300456{
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400457 if (desc->pg_count > desc->pg_bsize) {
458 /* should never happen */
459 WARN_ON_ONCE(1);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300460 return 0;
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400461 }
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300462
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400463 return min(desc->pg_bsize - desc->pg_count, (size_t)req->wb_bytes);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300464}
Benny Halevy19345cb2011-06-19 18:33:46 -0400465EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300466
Anna Schumaker00bfa302014-05-06 09:12:29 -0400467static inline struct nfs_rw_header *NFS_RW_HEADER(struct nfs_pgio_header *hdr)
468{
469 return container_of(hdr, struct nfs_rw_header, header);
470}
471
472/**
Anna Schumaker4a0de552014-05-06 09:12:30 -0400473 * nfs_rw_header_alloc - Allocate a header for a read or write
474 * @ops: Read or write function vector
475 */
476struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *ops)
477{
478 struct nfs_rw_header *header = ops->rw_alloc_header();
479
480 if (header) {
481 struct nfs_pgio_header *hdr = &header->header;
482
483 INIT_LIST_HEAD(&hdr->pages);
Anna Schumaker4a0de552014-05-06 09:12:30 -0400484 spin_lock_init(&hdr->lock);
485 atomic_set(&hdr->refcnt, 0);
486 hdr->rw_ops = ops;
487 }
488 return header;
489}
490EXPORT_SYMBOL_GPL(nfs_rw_header_alloc);
491
492/*
493 * nfs_rw_header_free - Free a read or write header
494 * @hdr: The header to free
495 */
496void nfs_rw_header_free(struct nfs_pgio_header *hdr)
497{
498 hdr->rw_ops->rw_free_header(NFS_RW_HEADER(hdr));
499}
500EXPORT_SYMBOL_GPL(nfs_rw_header_free);
501
502/**
Anna Schumaker00bfa302014-05-06 09:12:29 -0400503 * nfs_pgio_data_alloc - Allocate pageio data
504 * @hdr: The header making a request
505 * @pagecount: Number of pages to create
506 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400507static struct nfs_pgio_data *nfs_pgio_data_alloc(struct nfs_pgio_header *hdr,
508 unsigned int pagecount)
Anna Schumaker00bfa302014-05-06 09:12:29 -0400509{
510 struct nfs_pgio_data *data, *prealloc;
511
512 prealloc = &NFS_RW_HEADER(hdr)->rpc_data;
513 if (prealloc->header == NULL)
514 data = prealloc;
515 else
516 data = kzalloc(sizeof(*data), GFP_KERNEL);
517 if (!data)
518 goto out;
519
520 if (nfs_pgarray_set(&data->pages, pagecount)) {
521 data->header = hdr;
522 atomic_inc(&hdr->refcnt);
523 } else {
524 if (data != prealloc)
525 kfree(data);
526 data = NULL;
527 }
528out:
529 return data;
530}
531
532/**
533 * nfs_pgio_data_release - Properly free pageio data
534 * @data: The data to release
535 */
536void nfs_pgio_data_release(struct nfs_pgio_data *data)
537{
538 struct nfs_pgio_header *hdr = data->header;
539 struct nfs_rw_header *pageio_header = NFS_RW_HEADER(hdr);
540
541 put_nfs_open_context(data->args.context);
542 if (data->pages.pagevec != data->pages.page_array)
543 kfree(data->pages.pagevec);
544 if (data == &pageio_header->rpc_data) {
545 data->header = NULL;
546 data = NULL;
547 }
548 if (atomic_dec_and_test(&hdr->refcnt))
549 hdr->completion_ops->completion(hdr);
550 /* Note: we only free the rpc_task after callbacks are done.
551 * See the comment in rpc_free_task() for why
552 */
553 kfree(data);
554}
555EXPORT_SYMBOL_GPL(nfs_pgio_data_release);
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/**
Anna Schumakerce595152014-05-06 09:12:34 -0400558 * nfs_pgio_rpcsetup - Set up arguments for a pageio call
559 * @data: The pageio data
560 * @count: Number of bytes to read
561 * @offset: Initial offset
562 * @how: How to commit data (writes only)
563 * @cinfo: Commit information for the call (writes only)
564 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400565static void nfs_pgio_rpcsetup(struct nfs_pgio_data *data,
Anna Schumakerce595152014-05-06 09:12:34 -0400566 unsigned int count, unsigned int offset,
567 int how, struct nfs_commit_info *cinfo)
568{
569 struct nfs_page *req = data->header->req;
570
571 /* Set up the RPC argument and reply structs
572 * NB: take care not to mess about with data->commit et al. */
573
574 data->args.fh = NFS_FH(data->header->inode);
575 data->args.offset = req_offset(req) + offset;
576 /* pnfs_set_layoutcommit needs this */
577 data->mds_offset = data->args.offset;
578 data->args.pgbase = req->wb_pgbase + offset;
579 data->args.pages = data->pages.pagevec;
580 data->args.count = count;
581 data->args.context = get_nfs_open_context(req->wb_context);
582 data->args.lock_context = req->wb_lock_context;
583 data->args.stable = NFS_UNSTABLE;
584 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
585 case 0:
586 break;
587 case FLUSH_COND_STABLE:
588 if (nfs_reqs_to_commit(cinfo))
589 break;
590 default:
591 data->args.stable = NFS_FILE_SYNC;
592 }
593
594 data->res.fattr = &data->fattr;
595 data->res.count = count;
596 data->res.eof = 0;
597 data->res.verf = &data->verf;
598 nfs_fattr_init(&data->fattr);
599}
600
601/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400602 * nfs_pgio_prepare - Prepare pageio data to go over the wire
603 * @task: The current task
604 * @calldata: pageio data to prepare
605 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400606static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400607{
608 struct nfs_pgio_data *data = calldata;
609 int err;
610 err = NFS_PROTO(data->header->inode)->pgio_rpc_prepare(task, data);
611 if (err)
612 rpc_exit(task, err);
613}
614
Anna Schumaker1ed26f32014-05-06 09:12:37 -0400615int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_data *data,
616 const struct rpc_call_ops *call_ops, int how, int flags)
617{
618 struct rpc_task *task;
619 struct rpc_message msg = {
620 .rpc_argp = &data->args,
621 .rpc_resp = &data->res,
622 .rpc_cred = data->header->cred,
623 };
624 struct rpc_task_setup task_setup_data = {
625 .rpc_client = clnt,
626 .task = &data->task,
627 .rpc_message = &msg,
628 .callback_ops = call_ops,
629 .callback_data = data,
630 .workqueue = nfsiod_workqueue,
631 .flags = RPC_TASK_ASYNC | flags,
632 };
633 int ret = 0;
634
635 data->header->rw_ops->rw_initiate(data, &msg, &task_setup_data, how);
636
637 dprintk("NFS: %5u initiated pgio call "
638 "(req %s/%llu, %u bytes @ offset %llu)\n",
639 data->task.tk_pid,
640 data->header->inode->i_sb->s_id,
641 (unsigned long long)NFS_FILEID(data->header->inode),
642 data->args.count,
643 (unsigned long long)data->args.offset);
644
645 task = rpc_run_task(&task_setup_data);
646 if (IS_ERR(task)) {
647 ret = PTR_ERR(task);
648 goto out;
649 }
650 if (how & FLUSH_SYNC) {
651 ret = rpc_wait_for_completion_task(task);
652 if (ret == 0)
653 ret = task->tk_status;
654 }
655 rpc_put_task(task);
656out:
657 return ret;
658}
659EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
660
Anna Schumakera4cdda52014-05-06 09:12:31 -0400661/**
Anna Schumaker844c9e62014-05-06 09:12:35 -0400662 * nfs_pgio_error - Clean up from a pageio error
663 * @desc: IO descriptor
664 * @hdr: pageio header
665 */
Anna Schumakeref2c4882014-05-06 09:12:36 -0400666static int nfs_pgio_error(struct nfs_pageio_descriptor *desc,
Anna Schumaker844c9e62014-05-06 09:12:35 -0400667 struct nfs_pgio_header *hdr)
668{
Anna Schumaker844c9e62014-05-06 09:12:35 -0400669 set_bit(NFS_IOHDR_REDO, &hdr->flags);
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400670 nfs_pgio_data_release(hdr->data);
671 hdr->data = NULL;
Anna Schumaker844c9e62014-05-06 09:12:35 -0400672 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
673 return -ENOMEM;
674}
675
676/**
Anna Schumakera4cdda52014-05-06 09:12:31 -0400677 * nfs_pgio_release - Release pageio data
678 * @calldata: The pageio data to release
679 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400680static void nfs_pgio_release(void *calldata)
Anna Schumakera4cdda52014-05-06 09:12:31 -0400681{
682 struct nfs_pgio_data *data = calldata;
683 if (data->header->rw_ops->rw_release)
684 data->header->rw_ops->rw_release(data);
685 nfs_pgio_data_release(data);
686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/**
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400689 * nfs_pageio_init - initialise a page io descriptor
690 * @desc: pointer to descriptor
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400691 * @inode: pointer to inode
692 * @doio: pointer to io function
693 * @bsize: io block size
694 * @io_flags: extra parameters for the io function
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400695 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400696void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
697 struct inode *inode,
Trond Myklebust1751c362011-06-10 13:30:23 -0400698 const struct nfs_pageio_ops *pg_ops,
Fred Isaman061ae2e2012-04-20 14:47:48 -0400699 const struct nfs_pgio_completion_ops *compl_ops,
Anna Schumaker4a0de552014-05-06 09:12:30 -0400700 const struct nfs_rw_ops *rw_ops,
Trond Myklebust84dde762007-05-04 14:44:06 -0400701 size_t bsize,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400702 int io_flags)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400703{
704 INIT_LIST_HEAD(&desc->pg_list);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400705 desc->pg_bytes_written = 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400706 desc->pg_count = 0;
707 desc->pg_bsize = bsize;
708 desc->pg_base = 0;
Trond Myklebustb31268a2011-03-21 17:02:00 -0400709 desc->pg_moreio = 0;
Trond Myklebustd9156f92011-07-12 13:42:02 -0400710 desc->pg_recoalesce = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400711 desc->pg_inode = inode;
Trond Myklebust1751c362011-06-10 13:30:23 -0400712 desc->pg_ops = pg_ops;
Fred Isaman061ae2e2012-04-20 14:47:48 -0400713 desc->pg_completion_ops = compl_ops;
Anna Schumaker4a0de552014-05-06 09:12:30 -0400714 desc->pg_rw_ops = rw_ops;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400715 desc->pg_ioflags = io_flags;
716 desc->pg_error = 0;
Fred Isaman94ad1c82011-03-01 01:34:14 +0000717 desc->pg_lseg = NULL;
Fred Isaman584aa812012-04-20 14:47:51 -0400718 desc->pg_dreq = NULL;
Peng Taof6166382012-08-02 15:36:09 +0300719 desc->pg_layout_private = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400720}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400721EXPORT_SYMBOL_GPL(nfs_pageio_init);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400722
Anna Schumaker0eecb212014-05-06 09:12:32 -0400723/**
724 * nfs_pgio_result - Basic pageio error handling
725 * @task: The task that ran
726 * @calldata: Pageio data to check
727 */
Anna Schumaker6f92fa42014-05-06 09:12:33 -0400728static void nfs_pgio_result(struct rpc_task *task, void *calldata)
Anna Schumaker0eecb212014-05-06 09:12:32 -0400729{
730 struct nfs_pgio_data *data = calldata;
731 struct inode *inode = data->header->inode;
732
733 dprintk("NFS: %s: %5u, (status %d)\n", __func__,
734 task->tk_pid, task->tk_status);
735
736 if (data->header->rw_ops->rw_done(task, data, inode) != 0)
737 return;
738 if (task->tk_status < 0)
739 nfs_set_pgio_error(data->header, task->tk_status, data->args.offset);
740 else
741 data->header->rw_ops->rw_result(task, data);
742}
743
Anna Schumakeref2c4882014-05-06 09:12:36 -0400744/*
Anna Schumakeref2c4882014-05-06 09:12:36 -0400745 * Create an RPC task for the given read or write request and kick it.
746 * The page must have been locked by the caller.
747 *
748 * It may happen that the page we're passed is not marked dirty.
749 * This is the case if nfs_updatepage detects a conflicting request
750 * that has been written but not committed.
751 */
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400752int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
753 struct nfs_pgio_header *hdr)
Anna Schumakeref2c4882014-05-06 09:12:36 -0400754{
755 struct nfs_page *req;
756 struct page **pages;
757 struct nfs_pgio_data *data;
758 struct list_head *head = &desc->pg_list;
759 struct nfs_commit_info cinfo;
760
761 data = nfs_pgio_data_alloc(hdr, nfs_page_array_len(desc->pg_base,
762 desc->pg_count));
763 if (!data)
764 return nfs_pgio_error(desc, hdr);
765
766 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
767 pages = data->pages.pagevec;
768 while (!list_empty(head)) {
769 req = nfs_list_entry(head->next);
770 nfs_list_remove_request(req);
771 nfs_list_add_request(req, &hdr->pages);
772 *pages++ = req->wb_page;
773 }
774
775 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
776 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo)))
777 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
778
779 /* Set up the argument struct */
780 nfs_pgio_rpcsetup(data, desc->pg_count, 0, desc->pg_ioflags, &cinfo);
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400781 hdr->data = data;
Anna Schumakeref2c4882014-05-06 09:12:36 -0400782 desc->pg_rpc_callops = &nfs_pgio_common_ops;
783 return 0;
784}
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400785EXPORT_SYMBOL_GPL(nfs_generic_pgio);
Anna Schumakeref2c4882014-05-06 09:12:36 -0400786
Anna Schumaker41d8d5b2014-05-06 09:12:40 -0400787static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
Anna Schumakercf485fc2014-05-06 09:12:39 -0400788{
789 struct nfs_rw_header *rw_hdr;
790 struct nfs_pgio_header *hdr;
791 int ret;
792
793 rw_hdr = nfs_rw_header_alloc(desc->pg_rw_ops);
794 if (!rw_hdr) {
795 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
796 return -ENOMEM;
797 }
798 hdr = &rw_hdr->header;
799 nfs_pgheader_init(desc, hdr, nfs_rw_header_free);
800 atomic_inc(&hdr->refcnt);
801 ret = nfs_generic_pgio(desc, hdr);
802 if (ret == 0)
Weston Andros Adamson7f714722014-05-15 11:56:53 -0400803 ret = nfs_initiate_pgio(NFS_CLIENT(hdr->inode),
804 hdr->data, desc->pg_rpc_callops,
805 desc->pg_ioflags, 0);
Anna Schumakercf485fc2014-05-06 09:12:39 -0400806 if (atomic_dec_and_test(&hdr->refcnt))
807 hdr->completion_ops->completion(hdr);
808 return ret;
809}
810
Trond Myklebust4109bb72013-09-06 11:09:38 -0400811static bool nfs_match_open_context(const struct nfs_open_context *ctx1,
812 const struct nfs_open_context *ctx2)
813{
814 return ctx1->cred == ctx2->cred && ctx1->state == ctx2->state;
815}
816
817static bool nfs_match_lock_context(const struct nfs_lock_context *l1,
818 const struct nfs_lock_context *l2)
819{
820 return l1->lockowner.l_owner == l2->lockowner.l_owner
821 && l1->lockowner.l_pid == l2->lockowner.l_pid;
822}
823
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400824/**
825 * nfs_can_coalesce_requests - test two requests for compatibility
826 * @prev: pointer to nfs_page
827 * @req: pointer to nfs_page
828 *
829 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
830 * page data area they describe is contiguous, and that their RPC
831 * credentials, NFSv4 open state, and lockowners are the same.
832 *
833 * Return 'true' if this is the case, else return 'false'.
834 */
Benny Halevy18ad0a92011-05-25 21:03:56 +0300835static bool nfs_can_coalesce_requests(struct nfs_page *prev,
836 struct nfs_page *req,
837 struct nfs_pageio_descriptor *pgio)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400838{
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400839 size_t size;
840
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400841 if (prev) {
842 if (!nfs_match_open_context(req->wb_context, prev->wb_context))
843 return false;
844 if (req->wb_context->dentry->d_inode->i_flock != NULL &&
845 !nfs_match_lock_context(req->wb_lock_context,
846 prev->wb_lock_context))
847 return false;
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400848 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
849 return false;
850 }
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400851 size = pgio->pg_ops->pg_test(pgio, prev, req);
Weston Andros Adamsonf0cb9ab2014-05-15 11:56:52 -0400852 WARN_ON_ONCE(size > req->wb_bytes);
853 if (size && size < req->wb_bytes)
854 req->wb_bytes = size;
Weston Andros Adamsonb4fdac12014-05-15 11:56:43 -0400855 return size > 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400856}
857
858/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400859 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400860 * @desc: destination io descriptor
861 * @req: request
862 *
863 * Returns true if the request 'req' was successfully coalesced into the
864 * existing list of pages 'desc'.
865 */
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400866static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
867 struct nfs_page *req)
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400868{
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400869 struct nfs_page *prev = NULL;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400870 if (desc->pg_count != 0) {
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400871 prev = nfs_list_entry(desc->pg_list.prev);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300872 } else {
Trond Myklebustd8007d42011-06-10 13:30:23 -0400873 if (desc->pg_ops->pg_init)
874 desc->pg_ops->pg_init(desc, req);
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400875 desc->pg_base = req->wb_pgbase;
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300876 }
Weston Andros Adamsonab75e412014-05-15 11:56:44 -0400877 if (!nfs_can_coalesce_requests(prev, req, desc))
878 return 0;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400879 nfs_list_remove_request(req);
880 nfs_list_add_request(req, &desc->pg_list);
Boaz Harrosh5b36c7d2011-05-29 11:45:39 +0300881 desc->pg_count += req->wb_bytes;
Trond Myklebustd8a5ad72007-04-02 18:48:28 -0400882 return 1;
883}
884
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400885/*
886 * Helper for nfs_pageio_add_request and nfs_pageio_complete
887 */
888static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
889{
890 if (!list_empty(&desc->pg_list)) {
Trond Myklebust1751c362011-06-10 13:30:23 -0400891 int error = desc->pg_ops->pg_doio(desc);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400892 if (error < 0)
893 desc->pg_error = error;
894 else
895 desc->pg_bytes_written += desc->pg_count;
896 }
897 if (list_empty(&desc->pg_list)) {
898 desc->pg_count = 0;
899 desc->pg_base = 0;
900 }
901}
902
903/**
904 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
905 * @desc: destination io descriptor
906 * @req: request
907 *
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400908 * This may split a request into subrequests which are all part of the
909 * same page group.
910 *
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400911 * Returns true if the request 'req' was successfully coalesced into the
912 * existing list of pages 'desc'.
913 */
Trond Myklebustd9156f92011-07-12 13:42:02 -0400914static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400915 struct nfs_page *req)
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400916{
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400917 struct nfs_page *subreq;
918 unsigned int bytes_left = 0;
919 unsigned int offset, pgbase;
920
921 nfs_page_group_lock(req);
922
923 subreq = req;
924 bytes_left = subreq->wb_bytes;
925 offset = subreq->wb_offset;
926 pgbase = subreq->wb_pgbase;
927
928 do {
929 if (!nfs_pageio_do_add_request(desc, subreq)) {
930 /* make sure pg_test call(s) did nothing */
931 WARN_ON_ONCE(subreq->wb_bytes != bytes_left);
932 WARN_ON_ONCE(subreq->wb_offset != offset);
933 WARN_ON_ONCE(subreq->wb_pgbase != pgbase);
934
935 nfs_page_group_unlock(req);
936 desc->pg_moreio = 1;
937 nfs_pageio_doio(desc);
938 if (desc->pg_error < 0)
939 return 0;
940 desc->pg_moreio = 0;
941 if (desc->pg_recoalesce)
942 return 0;
943 /* retry add_request for this subreq */
944 nfs_page_group_lock(req);
945 continue;
946 }
947
948 /* check for buggy pg_test call(s) */
949 WARN_ON_ONCE(subreq->wb_bytes + subreq->wb_pgbase > PAGE_SIZE);
950 WARN_ON_ONCE(subreq->wb_bytes > bytes_left);
951 WARN_ON_ONCE(subreq->wb_bytes == 0);
952
953 bytes_left -= subreq->wb_bytes;
954 offset += subreq->wb_bytes;
955 pgbase += subreq->wb_bytes;
956
957 if (bytes_left) {
958 subreq = nfs_create_request(req->wb_context,
959 req->wb_page,
960 subreq, pgbase, bytes_left);
Trond Myklebustc1109552014-05-29 11:38:15 -0400961 if (IS_ERR(subreq))
962 goto err_ptr;
Weston Andros Adamson2bfc6e52014-05-15 11:56:45 -0400963 nfs_lock_request(subreq);
964 subreq->wb_offset = offset;
965 subreq->wb_index = req->wb_index;
966 }
967 } while (bytes_left > 0);
968
969 nfs_page_group_unlock(req);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400970 return 1;
Trond Myklebustc1109552014-05-29 11:38:15 -0400971err_ptr:
972 desc->pg_error = PTR_ERR(subreq);
973 nfs_page_group_unlock(req);
974 return 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400975}
976
Trond Myklebustd9156f92011-07-12 13:42:02 -0400977static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
978{
979 LIST_HEAD(head);
980
981 do {
982 list_splice_init(&desc->pg_list, &head);
983 desc->pg_bytes_written -= desc->pg_count;
984 desc->pg_count = 0;
985 desc->pg_base = 0;
986 desc->pg_recoalesce = 0;
987
988 while (!list_empty(&head)) {
989 struct nfs_page *req;
990
991 req = list_first_entry(&head, struct nfs_page, wb_list);
992 nfs_list_remove_request(req);
993 if (__nfs_pageio_add_request(desc, req))
994 continue;
995 if (desc->pg_error < 0)
996 return 0;
997 break;
998 }
999 } while (desc->pg_recoalesce);
1000 return 1;
1001}
1002
1003int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
1004 struct nfs_page *req)
1005{
1006 int ret;
1007
1008 do {
1009 ret = __nfs_pageio_add_request(desc, req);
1010 if (ret)
1011 break;
1012 if (desc->pg_error < 0)
1013 break;
1014 ret = nfs_do_recoalesce(desc);
1015 } while (ret);
1016 return ret;
1017}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001018EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
Trond Myklebustd9156f92011-07-12 13:42:02 -04001019
Trond Myklebustd8a5ad72007-04-02 18:48:28 -04001020/**
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001021 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
1022 * @desc: pointer to io descriptor
1023 */
1024void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1025{
Trond Myklebustd9156f92011-07-12 13:42:02 -04001026 for (;;) {
1027 nfs_pageio_doio(desc);
1028 if (!desc->pg_recoalesce)
1029 break;
1030 if (!nfs_do_recoalesce(desc))
1031 break;
1032 }
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001033}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001034EXPORT_SYMBOL_GPL(nfs_pageio_complete);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001035
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001036/**
1037 * nfs_pageio_cond_complete - Conditional I/O completion
1038 * @desc: pointer to io descriptor
1039 * @index: page index
1040 *
1041 * It is important to ensure that processes don't try to take locks
1042 * on non-contiguous ranges of pages as that might deadlock. This
1043 * function should be called before attempting to wait on a locked
1044 * nfs_page. It will complete the I/O if the page index 'index'
1045 * is not contiguous with the existing list of pages in 'desc'.
1046 */
1047void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
1048{
1049 if (!list_empty(&desc->pg_list)) {
1050 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
1051 if (index != prev->wb_index + 1)
Trond Myklebustd9156f92011-07-12 13:42:02 -04001052 nfs_pageio_complete(desc);
Trond Myklebust7fe7f842007-05-20 10:18:27 -04001053 }
1054}
1055
David Howellsf7b422b2006-06-09 09:34:33 -04001056int __init nfs_init_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 nfs_page_cachep = kmem_cache_create("nfs_page",
1059 sizeof(struct nfs_page),
1060 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001061 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (nfs_page_cachep == NULL)
1063 return -ENOMEM;
1064
1065 return 0;
1066}
1067
David Brownell266bee82006-06-27 12:59:15 -07001068void nfs_destroy_nfspagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001070 kmem_cache_destroy(nfs_page_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
Anna Schumakeref2c4882014-05-06 09:12:36 -04001073static const struct rpc_call_ops nfs_pgio_common_ops = {
Anna Schumaker6f92fa42014-05-06 09:12:33 -04001074 .rpc_call_prepare = nfs_pgio_prepare,
1075 .rpc_call_done = nfs_pgio_result,
1076 .rpc_release = nfs_pgio_release,
1077};
Anna Schumaker41d8d5b2014-05-06 09:12:40 -04001078
1079const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1080 .pg_test = nfs_generic_pg_test,
1081 .pg_doio = nfs_generic_pg_pgios,
1082};