nfs: add export operations
[linux-2.6-block.git] / fs / nfs / pagelist.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
12#include <linux/slab.h>
13#include <linux/file.h>
e8edc6e0 14#include <linux/sched.h>
1da177e4 15#include <linux/sunrpc/clnt.h>
1313e603 16#include <linux/nfs.h>
1da177e4
LT
17#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>
afeacc8c 22#include <linux/export.h>
1da177e4 23
8d5658c9 24#include "internal.h"
bae724ef 25#include "pnfs.h"
8d5658c9 26
0eecb214
AS
27#define NFSDBG_FACILITY NFSDBG_PAGECACHE
28
e18b890b 29static struct kmem_cache *nfs_page_cachep;
ef2c488c 30static const struct rpc_call_ops nfs_pgio_common_ops;
1da177e4 31
48d635f1
PT
32struct nfs_pgio_mirror *
33nfs_pgio_current_mirror(struct nfs_pageio_descriptor *desc)
34{
35 return nfs_pgio_has_mirroring(desc) ?
36 &desc->pg_mirrors[desc->pg_mirror_idx] :
37 &desc->pg_mirrors[0];
38}
39EXPORT_SYMBOL_GPL(nfs_pgio_current_mirror);
40
4db6e0b7
FI
41void nfs_pgheader_init(struct nfs_pageio_descriptor *desc,
42 struct nfs_pgio_header *hdr,
43 void (*release)(struct nfs_pgio_header *hdr))
44{
48d635f1 45 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb
WAA
46
47
48 hdr->req = nfs_list_entry(mirror->pg_list.next);
4db6e0b7
FI
49 hdr->inode = desc->pg_inode;
50 hdr->cred = hdr->req->wb_context->cred;
51 hdr->io_start = req_offset(hdr->req);
a7d42ddb 52 hdr->good_bytes = mirror->pg_count;
919e3bd9 53 hdr->io_completion = desc->pg_io_completion;
584aa810 54 hdr->dreq = desc->pg_dreq;
4db6e0b7 55 hdr->release = release;
061ae2ed 56 hdr->completion_ops = desc->pg_completion_ops;
584aa810
FI
57 if (hdr->completion_ops->init_hdr)
58 hdr->completion_ops->init_hdr(hdr);
a7d42ddb
WAA
59
60 hdr->pgio_mirror_idx = desc->pg_mirror_idx;
4db6e0b7 61}
89d77c8f 62EXPORT_SYMBOL_GPL(nfs_pgheader_init);
4db6e0b7
FI
63
64void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos)
65{
66 spin_lock(&hdr->lock);
e9ae58ae
TM
67 if (!test_and_set_bit(NFS_IOHDR_ERROR, &hdr->flags)
68 || pos < hdr->io_start + hdr->good_bytes) {
4db6e0b7
FI
69 clear_bit(NFS_IOHDR_EOF, &hdr->flags);
70 hdr->good_bytes = pos - hdr->io_start;
71 hdr->error = error;
72 }
73 spin_unlock(&hdr->lock);
74}
75
1da177e4
LT
76static inline struct nfs_page *
77nfs_page_alloc(void)
78{
192e501b 79 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
72895b1a 80 if (p)
1da177e4 81 INIT_LIST_HEAD(&p->wb_list);
1da177e4
LT
82 return p;
83}
84
85static inline void
86nfs_page_free(struct nfs_page *p)
87{
88 kmem_cache_free(nfs_page_cachep, p);
89}
90
577b4232
TM
91/**
92 * nfs_iocounter_wait - wait for i/o to complete
210c7c17 93 * @l_ctx: nfs_lock_context with io_counter to use
577b4232
TM
94 *
95 * returns -ERESTARTSYS if interrupted by a fatal signal.
96 * Otherwise returns 0 once the io_count hits 0.
97 */
98int
210c7c17 99nfs_iocounter_wait(struct nfs_lock_context *l_ctx)
577b4232 100{
210c7c17
BC
101 return wait_on_atomic_t(&l_ctx->io_count, nfs_wait_atomic_killable,
102 TASK_KILLABLE);
577b4232
TM
103}
104
7d6ddf88
BC
105/**
106 * nfs_async_iocounter_wait - wait on a rpc_waitqueue for I/O
107 * to complete
108 * @task: the rpc_task that should wait
109 * @l_ctx: nfs_lock_context with io_counter to check
110 *
111 * Returns true if there is outstanding I/O to wait on and the
112 * task has been put to sleep.
113 */
114bool
115nfs_async_iocounter_wait(struct rpc_task *task, struct nfs_lock_context *l_ctx)
116{
117 struct inode *inode = d_inode(l_ctx->open_context->dentry);
118 bool ret = false;
119
120 if (atomic_read(&l_ctx->io_count) > 0) {
121 rpc_sleep_on(&NFS_SERVER(inode)->uoc_rpcwaitq, task, NULL);
122 ret = true;
123 }
124
125 if (atomic_read(&l_ctx->io_count) == 0) {
126 rpc_wake_up_queued_task(&NFS_SERVER(inode)->uoc_rpcwaitq, task);
127 ret = false;
128 }
129
130 return ret;
131}
132EXPORT_SYMBOL_GPL(nfs_async_iocounter_wait);
133
2bfc6e56
WAA
134/*
135 * nfs_page_group_lock - lock the head of the page group
136 * @req - request in group that is to be locked
fd2f3a06 137 * @nonblock - if true don't block waiting for lock
2bfc6e56
WAA
138 *
139 * this lock must be held if modifying the page group list
e7029206 140 *
bc8a309e
WAA
141 * return 0 on success, < 0 on error: -EDELAY if nonblocking or the
142 * result from wait_on_bit_lock
143 *
144 * NOTE: calling with nonblock=false should always have set the
145 * lock bit (see fs/buffer.c and other uses of wait_on_bit_lock
146 * with TASK_UNINTERRUPTIBLE), so there is no need to check the result.
2bfc6e56 147 */
e7029206 148int
fd2f3a06 149nfs_page_group_lock(struct nfs_page *req, bool nonblock)
2bfc6e56
WAA
150{
151 struct nfs_page *head = req->wb_head;
2bfc6e56
WAA
152
153 WARN_ON_ONCE(head != head->wb_head);
154
bc8a309e
WAA
155 if (!test_and_set_bit(PG_HEADLOCK, &head->wb_flags))
156 return 0;
e7029206 157
bc8a309e
WAA
158 if (!nonblock)
159 return wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
160 TASK_UNINTERRUPTIBLE);
161
162 return -EAGAIN;
2bfc6e56
WAA
163}
164
7c3af975
WAA
165/*
166 * nfs_page_group_lock_wait - wait for the lock to clear, but don't grab it
167 * @req - a request in the group
168 *
169 * This is a blocking call to wait for the group lock to be cleared.
170 */
171void
172nfs_page_group_lock_wait(struct nfs_page *req)
173{
174 struct nfs_page *head = req->wb_head;
175
176 WARN_ON_ONCE(head != head->wb_head);
177
178 wait_on_bit(&head->wb_flags, PG_HEADLOCK,
179 TASK_UNINTERRUPTIBLE);
180}
181
2bfc6e56
WAA
182/*
183 * nfs_page_group_unlock - unlock the head of the page group
184 * @req - request in group that is to be unlocked
185 */
186void
187nfs_page_group_unlock(struct nfs_page *req)
188{
189 struct nfs_page *head = req->wb_head;
190
191 WARN_ON_ONCE(head != head->wb_head);
192
d1e1cda8 193 smp_mb__before_atomic();
2bfc6e56 194 clear_bit(PG_HEADLOCK, &head->wb_flags);
d1e1cda8 195 smp_mb__after_atomic();
2bfc6e56
WAA
196 wake_up_bit(&head->wb_flags, PG_HEADLOCK);
197}
198
199/*
200 * nfs_page_group_sync_on_bit_locked
201 *
202 * must be called with page group lock held
203 */
204static bool
205nfs_page_group_sync_on_bit_locked(struct nfs_page *req, unsigned int bit)
206{
207 struct nfs_page *head = req->wb_head;
208 struct nfs_page *tmp;
209
210 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_flags));
211 WARN_ON_ONCE(test_and_set_bit(bit, &req->wb_flags));
212
213 tmp = req->wb_this_page;
214 while (tmp != req) {
215 if (!test_bit(bit, &tmp->wb_flags))
216 return false;
217 tmp = tmp->wb_this_page;
218 }
219
220 /* true! reset all bits */
221 tmp = req;
222 do {
223 clear_bit(bit, &tmp->wb_flags);
224 tmp = tmp->wb_this_page;
225 } while (tmp != req);
226
227 return true;
228}
229
230/*
231 * nfs_page_group_sync_on_bit - set bit on current request, but only
232 * return true if the bit is set for all requests in page group
233 * @req - request in page group
234 * @bit - PG_* bit that is used to sync page group
235 */
236bool nfs_page_group_sync_on_bit(struct nfs_page *req, unsigned int bit)
237{
238 bool ret;
239
fd2f3a06 240 nfs_page_group_lock(req, false);
2bfc6e56
WAA
241 ret = nfs_page_group_sync_on_bit_locked(req, bit);
242 nfs_page_group_unlock(req);
243
244 return ret;
245}
246
247/*
248 * nfs_page_group_init - Initialize the page group linkage for @req
249 * @req - a new nfs request
250 * @prev - the previous request in page group, or NULL if @req is the first
251 * or only request in the group (the head).
252 */
253static inline void
254nfs_page_group_init(struct nfs_page *req, struct nfs_page *prev)
255{
cb1410c7 256 struct inode *inode;
2bfc6e56
WAA
257 WARN_ON_ONCE(prev == req);
258
259 if (!prev) {
85710a83 260 /* a head request */
2bfc6e56
WAA
261 req->wb_head = req;
262 req->wb_this_page = req;
263 } else {
85710a83 264 /* a subrequest */
2bfc6e56
WAA
265 WARN_ON_ONCE(prev->wb_this_page != prev->wb_head);
266 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &prev->wb_head->wb_flags));
267 req->wb_head = prev->wb_head;
268 req->wb_this_page = prev->wb_this_page;
269 prev->wb_this_page = req;
270
85710a83
WAA
271 /* All subrequests take a ref on the head request until
272 * nfs_page_group_destroy is called */
273 kref_get(&req->wb_head->wb_kref);
274
cb1410c7
WAA
275 /* grab extra ref and bump the request count if head request
276 * has extra ref from the write/commit path to handle handoff
277 * between write and commit lists. */
17089a29 278 if (test_bit(PG_INODE_REF, &prev->wb_head->wb_flags)) {
cb1410c7 279 inode = page_file_mapping(req->wb_page)->host;
17089a29 280 set_bit(PG_INODE_REF, &req->wb_flags);
2bfc6e56 281 kref_get(&req->wb_kref);
cb1410c7
WAA
282 spin_lock(&inode->i_lock);
283 NFS_I(inode)->nrequests++;
284 spin_unlock(&inode->i_lock);
17089a29 285 }
2bfc6e56
WAA
286 }
287}
288
289/*
290 * nfs_page_group_destroy - sync the destruction of page groups
291 * @req - request that no longer needs the page group
292 *
293 * releases the page group reference from each member once all
294 * members have called this function.
295 */
296static void
297nfs_page_group_destroy(struct kref *kref)
298{
299 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
300 struct nfs_page *tmp, *next;
301
85710a83
WAA
302 /* subrequests must release the ref on the head request */
303 if (req->wb_head != req)
304 nfs_release_request(req->wb_head);
305
2bfc6e56
WAA
306 if (!nfs_page_group_sync_on_bit(req, PG_TEARDOWN))
307 return;
308
309 tmp = req;
310 do {
311 next = tmp->wb_this_page;
312 /* unlink and free */
313 tmp->wb_this_page = tmp;
314 tmp->wb_head = tmp;
315 nfs_free_request(tmp);
316 tmp = next;
317 } while (tmp != req);
318}
319
1da177e4
LT
320/**
321 * nfs_create_request - Create an NFS read/write request.
c02f557d 322 * @ctx: open context to use
1da177e4 323 * @page: page to write
2bfc6e56 324 * @last: last nfs request created for this page group or NULL if head
1da177e4
LT
325 * @offset: starting offset within the page for the write
326 * @count: number of bytes to read/write
327 *
328 * The page must be locked by the caller. This makes sure we never
a19b89ca 329 * create two different requests for the same page.
1da177e4
LT
330 * User should ensure it is safe to sleep in this function.
331 */
332struct nfs_page *
8c8f1ac1 333nfs_create_request(struct nfs_open_context *ctx, struct page *page,
2bfc6e56
WAA
334 struct nfs_page *last, unsigned int offset,
335 unsigned int count)
1da177e4 336{
1da177e4 337 struct nfs_page *req;
b3c54de6 338 struct nfs_lock_context *l_ctx;
1da177e4 339
c58c8441
TM
340 if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
341 return ERR_PTR(-EBADF);
18eb8842
TM
342 /* try to allocate the request struct */
343 req = nfs_page_alloc();
344 if (req == NULL)
345 return ERR_PTR(-ENOMEM);
1da177e4 346
015f0212 347 /* get lock context early so we can deal with alloc failures */
b3c54de6
TM
348 l_ctx = nfs_get_lock_context(ctx);
349 if (IS_ERR(l_ctx)) {
015f0212 350 nfs_page_free(req);
b3c54de6 351 return ERR_CAST(l_ctx);
015f0212 352 }
b3c54de6 353 req->wb_lock_context = l_ctx;
210c7c17 354 atomic_inc(&l_ctx->io_count);
015f0212 355
1da177e4
LT
356 /* Initialize the request struct. Initially, we assume a
357 * long write-back delay. This will be adjusted in
358 * update_nfs_request below if the region is not locked. */
359 req->wb_page = page;
67911c8f 360 if (page) {
8cd79788 361 req->wb_index = page_index(page);
67911c8f
AS
362 get_page(page);
363 }
1da177e4
LT
364 req->wb_offset = offset;
365 req->wb_pgbase = offset;
366 req->wb_bytes = count;
1da177e4 367 req->wb_context = get_nfs_open_context(ctx);
c03b4024 368 kref_init(&req->wb_kref);
2bfc6e56 369 nfs_page_group_init(req, last);
1da177e4
LT
370 return req;
371}
372
373/**
1d1afcbc 374 * nfs_unlock_request - Unlock request and wake up sleepers.
1da177e4
LT
375 * @req:
376 */
1d1afcbc 377void nfs_unlock_request(struct nfs_page *req)
1da177e4
LT
378{
379 if (!NFS_WBACK_BUSY(req)) {
380 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
381 BUG();
382 }
4e857c58 383 smp_mb__before_atomic();
1da177e4 384 clear_bit(PG_BUSY, &req->wb_flags);
4e857c58 385 smp_mb__after_atomic();
464a98bd 386 wake_up_bit(&req->wb_flags, PG_BUSY);
3aff4ebb
TM
387}
388
389/**
1d1afcbc
TM
390 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
391 * @req:
3aff4ebb 392 */
1d1afcbc 393void nfs_unlock_and_release_request(struct nfs_page *req)
3aff4ebb 394{
1d1afcbc 395 nfs_unlock_request(req);
1da177e4
LT
396 nfs_release_request(req);
397}
398
4d65c520 399/*
1da177e4
LT
400 * nfs_clear_request - Free up all resources allocated to the request
401 * @req:
402 *
bb6fbc45
TM
403 * Release page and open context resources associated with a read/write
404 * request after it has completed.
1da177e4 405 */
4d65c520 406static void nfs_clear_request(struct nfs_page *req)
1da177e4 407{
cd52ed35 408 struct page *page = req->wb_page;
bb6fbc45 409 struct nfs_open_context *ctx = req->wb_context;
f11ac8db 410 struct nfs_lock_context *l_ctx = req->wb_lock_context;
bb6fbc45 411
cd52ed35 412 if (page != NULL) {
09cbfeaf 413 put_page(page);
1da177e4
LT
414 req->wb_page = NULL;
415 }
f11ac8db 416 if (l_ctx != NULL) {
7d6ddf88 417 if (atomic_dec_and_test(&l_ctx->io_count)) {
210c7c17 418 wake_up_atomic_t(&l_ctx->io_count);
7d6ddf88
BC
419 if (test_bit(NFS_CONTEXT_UNLOCK, &ctx->flags))
420 rpc_wake_up(&NFS_SERVER(d_inode(ctx->dentry))->uoc_rpcwaitq);
421 }
f11ac8db
TM
422 nfs_put_lock_context(l_ctx);
423 req->wb_lock_context = NULL;
424 }
bb6fbc45
TM
425 if (ctx != NULL) {
426 put_nfs_open_context(ctx);
427 req->wb_context = NULL;
428 }
1da177e4
LT
429}
430
1da177e4
LT
431/**
432 * nfs_release_request - Release the count on an NFS read/write request
433 * @req: request to release
434 *
435 * Note: Should never be called with the spinlock held!
436 */
d4581383 437void nfs_free_request(struct nfs_page *req)
1da177e4 438{
2bfc6e56
WAA
439 WARN_ON_ONCE(req->wb_this_page != req);
440
441 /* extra debug: make sure no sync bits are still set */
442 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
67d0338e
WAA
443 WARN_ON_ONCE(test_bit(PG_UNLOCKPAGE, &req->wb_flags));
444 WARN_ON_ONCE(test_bit(PG_UPTODATE, &req->wb_flags));
20633f04
WAA
445 WARN_ON_ONCE(test_bit(PG_WB_END, &req->wb_flags));
446 WARN_ON_ONCE(test_bit(PG_REMOVE, &req->wb_flags));
1da177e4 447
bb6fbc45 448 /* Release struct file and open context */
1da177e4 449 nfs_clear_request(req);
1da177e4
LT
450 nfs_page_free(req);
451}
452
c03b4024
TM
453void nfs_release_request(struct nfs_page *req)
454{
2bfc6e56 455 kref_put(&req->wb_kref, nfs_page_group_destroy);
9f557cd8
TM
456}
457
1da177e4
LT
458/**
459 * nfs_wait_on_request - Wait for a request to complete.
460 * @req: request to wait upon.
461 *
150030b7 462 * Interruptible by fatal signals only.
1da177e4
LT
463 * The user is responsible for holding a count on the request.
464 */
465int
466nfs_wait_on_request(struct nfs_page *req)
467{
74316201
N
468 return wait_on_bit_io(&req->wb_flags, PG_BUSY,
469 TASK_UNINTERRUPTIBLE);
1da177e4
LT
470}
471
b4fdac1a
WAA
472/*
473 * nfs_generic_pg_test - determine if requests can be coalesced
474 * @desc: pointer to descriptor
475 * @prev: previous request in desc, or NULL
476 * @req: this request
477 *
478 * Returns zero if @req can be coalesced into @desc, otherwise it returns
479 * the size of the request.
480 */
481size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
482 struct nfs_page *prev, struct nfs_page *req)
5b36c7dc 483{
48d635f1 484 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb
WAA
485
486
487 if (mirror->pg_count > mirror->pg_bsize) {
f0cb9ab8
WAA
488 /* should never happen */
489 WARN_ON_ONCE(1);
5b36c7dc 490 return 0;
f0cb9ab8 491 }
5b36c7dc 492
2e11f829
CH
493 /*
494 * Limit the request size so that we can still allocate a page array
495 * for it without upsetting the slab allocator.
496 */
a7d42ddb 497 if (((mirror->pg_count + req->wb_bytes) >> PAGE_SHIFT) *
048883e0 498 sizeof(struct page *) > PAGE_SIZE)
2e11f829
CH
499 return 0;
500
a7d42ddb 501 return min(mirror->pg_bsize - mirror->pg_count, (size_t)req->wb_bytes);
5b36c7dc 502}
19345cb2 503EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
5b36c7dc 504
1e7f3a48 505struct nfs_pgio_header *nfs_pgio_header_alloc(const struct nfs_rw_ops *ops)
4a0de55c 506{
1e7f3a48 507 struct nfs_pgio_header *hdr = ops->rw_alloc_header();
4a0de55c 508
1e7f3a48 509 if (hdr) {
4a0de55c 510 INIT_LIST_HEAD(&hdr->pages);
4a0de55c 511 spin_lock_init(&hdr->lock);
4a0de55c
AS
512 hdr->rw_ops = ops;
513 }
1e7f3a48 514 return hdr;
4a0de55c 515}
1e7f3a48 516EXPORT_SYMBOL_GPL(nfs_pgio_header_alloc);
4a0de55c
AS
517
518/*
1e7f3a48 519 * nfs_pgio_header_free - Free a read or write header
4a0de55c
AS
520 * @hdr: The header to free
521 */
1e7f3a48 522void nfs_pgio_header_free(struct nfs_pgio_header *hdr)
4a0de55c 523{
1e7f3a48 524 hdr->rw_ops->rw_free_header(hdr);
4a0de55c 525}
1e7f3a48 526EXPORT_SYMBOL_GPL(nfs_pgio_header_free);
4a0de55c 527
00bfa30a 528/**
4714fb51
WAA
529 * nfs_pgio_data_destroy - make @hdr suitable for reuse
530 *
531 * Frees memory and releases refs from nfs_generic_pgio, so that it may
532 * be called again.
533 *
534 * @hdr: A header that has had nfs_generic_pgio called
00bfa30a 535 */
d45f60c6 536void nfs_pgio_data_destroy(struct nfs_pgio_header *hdr)
00bfa30a 537{
3caa0c6e
TM
538 if (hdr->args.context)
539 put_nfs_open_context(hdr->args.context);
d45f60c6
WAA
540 if (hdr->page_array.pagevec != hdr->page_array.page_array)
541 kfree(hdr->page_array.pagevec);
00bfa30a 542}
1e7f3a48 543EXPORT_SYMBOL_GPL(nfs_pgio_data_destroy);
00bfa30a 544
ce59515c
AS
545/**
546 * nfs_pgio_rpcsetup - Set up arguments for a pageio call
d45f60c6 547 * @hdr: The pageio hdr
ce59515c
AS
548 * @count: Number of bytes to read
549 * @offset: Initial offset
550 * @how: How to commit data (writes only)
551 * @cinfo: Commit information for the call (writes only)
552 */
d45f60c6 553static void nfs_pgio_rpcsetup(struct nfs_pgio_header *hdr,
ce59515c
AS
554 unsigned int count, unsigned int offset,
555 int how, struct nfs_commit_info *cinfo)
556{
d45f60c6 557 struct nfs_page *req = hdr->req;
ce59515c
AS
558
559 /* Set up the RPC argument and reply structs
d45f60c6 560 * NB: take care not to mess about with hdr->commit et al. */
ce59515c 561
d45f60c6
WAA
562 hdr->args.fh = NFS_FH(hdr->inode);
563 hdr->args.offset = req_offset(req) + offset;
ce59515c 564 /* pnfs_set_layoutcommit needs this */
d45f60c6
WAA
565 hdr->mds_offset = hdr->args.offset;
566 hdr->args.pgbase = req->wb_pgbase + offset;
567 hdr->args.pages = hdr->page_array.pagevec;
568 hdr->args.count = count;
569 hdr->args.context = get_nfs_open_context(req->wb_context);
570 hdr->args.lock_context = req->wb_lock_context;
571 hdr->args.stable = NFS_UNSTABLE;
ce59515c
AS
572 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
573 case 0:
574 break;
575 case FLUSH_COND_STABLE:
576 if (nfs_reqs_to_commit(cinfo))
577 break;
578 default:
d45f60c6 579 hdr->args.stable = NFS_FILE_SYNC;
ce59515c
AS
580 }
581
d45f60c6
WAA
582 hdr->res.fattr = &hdr->fattr;
583 hdr->res.count = count;
584 hdr->res.eof = 0;
c65e6254 585 hdr->res.verf = &hdr->verf;
d45f60c6 586 nfs_fattr_init(&hdr->fattr);
ce59515c
AS
587}
588
a4cdda59 589/**
d45f60c6 590 * nfs_pgio_prepare - Prepare pageio hdr to go over the wire
a4cdda59 591 * @task: The current task
d45f60c6 592 * @calldata: pageio header to prepare
a4cdda59 593 */
6f92fa45 594static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
a4cdda59 595{
d45f60c6 596 struct nfs_pgio_header *hdr = calldata;
a4cdda59 597 int err;
d45f60c6 598 err = NFS_PROTO(hdr->inode)->pgio_rpc_prepare(task, hdr);
a4cdda59
AS
599 if (err)
600 rpc_exit(task, err);
601}
602
d45f60c6 603int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_header *hdr,
46a5ab47 604 struct rpc_cred *cred, const struct nfs_rpc_ops *rpc_ops,
1ed26f33
AS
605 const struct rpc_call_ops *call_ops, int how, int flags)
606{
607 struct rpc_task *task;
608 struct rpc_message msg = {
d45f60c6
WAA
609 .rpc_argp = &hdr->args,
610 .rpc_resp = &hdr->res,
46a5ab47 611 .rpc_cred = cred,
1ed26f33
AS
612 };
613 struct rpc_task_setup task_setup_data = {
614 .rpc_client = clnt,
d45f60c6 615 .task = &hdr->task,
1ed26f33
AS
616 .rpc_message = &msg,
617 .callback_ops = call_ops,
d45f60c6 618 .callback_data = hdr,
1ed26f33
AS
619 .workqueue = nfsiod_workqueue,
620 .flags = RPC_TASK_ASYNC | flags,
621 };
622 int ret = 0;
623
abde71f4 624 hdr->rw_ops->rw_initiate(hdr, &msg, rpc_ops, &task_setup_data, how);
1ed26f33 625
b4839ebe 626 dprintk("NFS: initiated pgio call "
1ed26f33 627 "(req %s/%llu, %u bytes @ offset %llu)\n",
343ae531
AS
628 hdr->inode->i_sb->s_id,
629 (unsigned long long)NFS_FILEID(hdr->inode),
d45f60c6
WAA
630 hdr->args.count,
631 (unsigned long long)hdr->args.offset);
1ed26f33
AS
632
633 task = rpc_run_task(&task_setup_data);
634 if (IS_ERR(task)) {
635 ret = PTR_ERR(task);
636 goto out;
637 }
638 if (how & FLUSH_SYNC) {
639 ret = rpc_wait_for_completion_task(task);
640 if (ret == 0)
641 ret = task->tk_status;
642 }
643 rpc_put_task(task);
644out:
645 return ret;
646}
647EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
648
844c9e69
AS
649/**
650 * nfs_pgio_error - Clean up from a pageio error
651 * @desc: IO descriptor
652 * @hdr: pageio header
653 */
2bff2288 654static void nfs_pgio_error(struct nfs_pgio_header *hdr)
844c9e69 655{
844c9e69 656 set_bit(NFS_IOHDR_REDO, &hdr->flags);
d45f60c6 657 nfs_pgio_data_destroy(hdr);
4714fb51 658 hdr->completion_ops->completion(hdr);
844c9e69
AS
659}
660
a4cdda59
AS
661/**
662 * nfs_pgio_release - Release pageio data
d45f60c6 663 * @calldata: The pageio header to release
a4cdda59 664 */
6f92fa45 665static void nfs_pgio_release(void *calldata)
a4cdda59 666{
d45f60c6 667 struct nfs_pgio_header *hdr = calldata;
d45f60c6 668 nfs_pgio_data_destroy(hdr);
4714fb51 669 hdr->completion_ops->completion(hdr);
a4cdda59
AS
670}
671
a7d42ddb
WAA
672static void nfs_pageio_mirror_init(struct nfs_pgio_mirror *mirror,
673 unsigned int bsize)
674{
675 INIT_LIST_HEAD(&mirror->pg_list);
676 mirror->pg_bytes_written = 0;
677 mirror->pg_count = 0;
678 mirror->pg_bsize = bsize;
679 mirror->pg_base = 0;
680 mirror->pg_recoalesce = 0;
681}
682
1da177e4 683/**
d8a5ad75
TM
684 * nfs_pageio_init - initialise a page io descriptor
685 * @desc: pointer to descriptor
bcb71bba 686 * @inode: pointer to inode
dfad7000
YW
687 * @pg_ops: pointer to pageio operations
688 * @compl_ops: pointer to pageio completion operations
689 * @rw_ops: pointer to nfs read/write operations
bcb71bba
TM
690 * @bsize: io block size
691 * @io_flags: extra parameters for the io function
d8a5ad75 692 */
bcb71bba
TM
693void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
694 struct inode *inode,
1751c363 695 const struct nfs_pageio_ops *pg_ops,
061ae2ed 696 const struct nfs_pgio_completion_ops *compl_ops,
4a0de55c 697 const struct nfs_rw_ops *rw_ops,
84dde76c 698 size_t bsize,
fbe77c30
BC
699 int io_flags,
700 gfp_t gfp_flags)
d8a5ad75 701{
a7d42ddb
WAA
702 struct nfs_pgio_mirror *new;
703 int i;
704
b31268ac 705 desc->pg_moreio = 0;
bcb71bba 706 desc->pg_inode = inode;
1751c363 707 desc->pg_ops = pg_ops;
061ae2ed 708 desc->pg_completion_ops = compl_ops;
4a0de55c 709 desc->pg_rw_ops = rw_ops;
bcb71bba
TM
710 desc->pg_ioflags = io_flags;
711 desc->pg_error = 0;
94ad1c80 712 desc->pg_lseg = NULL;
919e3bd9 713 desc->pg_io_completion = NULL;
584aa810 714 desc->pg_dreq = NULL;
a7d42ddb
WAA
715 desc->pg_bsize = bsize;
716
717 desc->pg_mirror_count = 1;
718 desc->pg_mirror_idx = 0;
719
720 if (pg_ops->pg_get_mirror_count) {
721 /* until we have a request, we don't have an lseg and no
722 * idea how many mirrors there will be */
723 new = kcalloc(NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX,
ae97aa52 724 sizeof(struct nfs_pgio_mirror), gfp_flags);
a7d42ddb
WAA
725 desc->pg_mirrors_dynamic = new;
726 desc->pg_mirrors = new;
727
728 for (i = 0; i < NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX; i++)
729 nfs_pageio_mirror_init(&desc->pg_mirrors[i], bsize);
730 } else {
731 desc->pg_mirrors_dynamic = NULL;
732 desc->pg_mirrors = desc->pg_mirrors_static;
733 nfs_pageio_mirror_init(&desc->pg_mirrors[0], bsize);
734 }
d8a5ad75 735}
89d77c8f 736EXPORT_SYMBOL_GPL(nfs_pageio_init);
d8a5ad75 737
0eecb214
AS
738/**
739 * nfs_pgio_result - Basic pageio error handling
740 * @task: The task that ran
d45f60c6 741 * @calldata: Pageio header to check
0eecb214 742 */
6f92fa45 743static void nfs_pgio_result(struct rpc_task *task, void *calldata)
0eecb214 744{
d45f60c6
WAA
745 struct nfs_pgio_header *hdr = calldata;
746 struct inode *inode = hdr->inode;
0eecb214
AS
747
748 dprintk("NFS: %s: %5u, (status %d)\n", __func__,
749 task->tk_pid, task->tk_status);
750
d45f60c6 751 if (hdr->rw_ops->rw_done(task, hdr, inode) != 0)
0eecb214
AS
752 return;
753 if (task->tk_status < 0)
d45f60c6 754 nfs_set_pgio_error(hdr, task->tk_status, hdr->args.offset);
0eecb214 755 else
d45f60c6 756 hdr->rw_ops->rw_result(task, hdr);
0eecb214
AS
757}
758
ef2c488c
AS
759/*
760 * Create an RPC task for the given read or write request and kick it.
761 * The page must have been locked by the caller.
762 *
763 * It may happen that the page we're passed is not marked dirty.
764 * This is the case if nfs_updatepage detects a conflicting request
765 * that has been written but not committed.
766 */
f0cb9ab8
WAA
767int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
768 struct nfs_pgio_header *hdr)
ef2c488c 769{
48d635f1 770 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb 771
ef2c488c 772 struct nfs_page *req;
bba5c188
WAA
773 struct page **pages,
774 *last_page;
a7d42ddb 775 struct list_head *head = &mirror->pg_list;
ef2c488c 776 struct nfs_commit_info cinfo;
8ef9b0b9 777 struct nfs_page_array *pg_array = &hdr->page_array;
bba5c188 778 unsigned int pagecount, pageused;
ae97aa52 779 gfp_t gfp_flags = GFP_KERNEL;
ef2c488c 780
a7d42ddb 781 pagecount = nfs_page_array_len(mirror->pg_base, mirror->pg_count);
2eb3aea7 782 pg_array->npages = pagecount;
8ef9b0b9
BC
783
784 if (pagecount <= ARRAY_SIZE(pg_array->page_array))
785 pg_array->pagevec = pg_array->page_array;
786 else {
fbe77c30 787 if (hdr->rw_mode == FMODE_WRITE)
8ef9b0b9
BC
788 gfp_flags = GFP_NOIO;
789 pg_array->pagevec = kcalloc(pagecount, sizeof(struct page *), gfp_flags);
790 if (!pg_array->pagevec) {
791 pg_array->npages = 0;
792 nfs_pgio_error(hdr);
793 desc->pg_error = -ENOMEM;
794 return desc->pg_error;
795 }
2bff2288 796 }
ef2c488c
AS
797
798 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
d45f60c6 799 pages = hdr->page_array.pagevec;
bba5c188
WAA
800 last_page = NULL;
801 pageused = 0;
ef2c488c
AS
802 while (!list_empty(head)) {
803 req = nfs_list_entry(head->next);
804 nfs_list_remove_request(req);
805 nfs_list_add_request(req, &hdr->pages);
bba5c188 806
bba5c188 807 if (!last_page || last_page != req->wb_page) {
bba5c188 808 pageused++;
b8fb9c30
TM
809 if (pageused > pagecount)
810 break;
811 *pages++ = last_page = req->wb_page;
bba5c188 812 }
ef2c488c 813 }
2bff2288
PT
814 if (WARN_ON_ONCE(pageused != pagecount)) {
815 nfs_pgio_error(hdr);
816 desc->pg_error = -EINVAL;
817 return desc->pg_error;
818 }
ef2c488c
AS
819
820 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
821 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo)))
822 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
823
824 /* Set up the argument struct */
a7d42ddb 825 nfs_pgio_rpcsetup(hdr, mirror->pg_count, 0, desc->pg_ioflags, &cinfo);
ef2c488c
AS
826 desc->pg_rpc_callops = &nfs_pgio_common_ops;
827 return 0;
828}
f0cb9ab8 829EXPORT_SYMBOL_GPL(nfs_generic_pgio);
ef2c488c 830
41d8d5b7 831static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
cf485fcd 832{
cf485fcd
AS
833 struct nfs_pgio_header *hdr;
834 int ret;
835
1e7f3a48
WAA
836 hdr = nfs_pgio_header_alloc(desc->pg_rw_ops);
837 if (!hdr) {
2bff2288
PT
838 desc->pg_error = -ENOMEM;
839 return desc->pg_error;
cf485fcd 840 }
1e7f3a48 841 nfs_pgheader_init(desc, hdr, nfs_pgio_header_free);
cf485fcd
AS
842 ret = nfs_generic_pgio(desc, hdr);
843 if (ret == 0)
7f714720 844 ret = nfs_initiate_pgio(NFS_CLIENT(hdr->inode),
46a5ab47
PT
845 hdr,
846 hdr->cred,
847 NFS_PROTO(hdr->inode),
abde71f4 848 desc->pg_rpc_callops,
7f714720 849 desc->pg_ioflags, 0);
cf485fcd
AS
850 return ret;
851}
852
a7d42ddb
WAA
853/*
854 * nfs_pageio_setup_mirroring - determine if mirroring is to be used
855 * by calling the pg_get_mirror_count op
856 */
857static int nfs_pageio_setup_mirroring(struct nfs_pageio_descriptor *pgio,
858 struct nfs_page *req)
859{
860 int mirror_count = 1;
861
862 if (!pgio->pg_ops->pg_get_mirror_count)
863 return 0;
864
865 mirror_count = pgio->pg_ops->pg_get_mirror_count(pgio, req);
866
d600ad1f
PT
867 if (pgio->pg_error < 0)
868 return pgio->pg_error;
869
a7d42ddb
WAA
870 if (!mirror_count || mirror_count > NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX)
871 return -EINVAL;
872
873 if (WARN_ON_ONCE(!pgio->pg_mirrors_dynamic))
874 return -EINVAL;
875
876 pgio->pg_mirror_count = mirror_count;
877
878 return 0;
879}
880
881/*
882 * nfs_pageio_stop_mirroring - stop using mirroring (set mirror count to 1)
883 */
884void nfs_pageio_stop_mirroring(struct nfs_pageio_descriptor *pgio)
885{
886 pgio->pg_mirror_count = 1;
887 pgio->pg_mirror_idx = 0;
888}
889
890static void nfs_pageio_cleanup_mirroring(struct nfs_pageio_descriptor *pgio)
891{
892 pgio->pg_mirror_count = 1;
893 pgio->pg_mirror_idx = 0;
894 pgio->pg_mirrors = pgio->pg_mirrors_static;
895 kfree(pgio->pg_mirrors_dynamic);
896 pgio->pg_mirrors_dynamic = NULL;
897}
898
4109bb74
TM
899static bool nfs_match_lock_context(const struct nfs_lock_context *l1,
900 const struct nfs_lock_context *l2)
901{
d51fdb87 902 return l1->lockowner == l2->lockowner;
4109bb74
TM
903}
904
d8a5ad75
TM
905/**
906 * nfs_can_coalesce_requests - test two requests for compatibility
907 * @prev: pointer to nfs_page
908 * @req: pointer to nfs_page
909 *
910 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
911 * page data area they describe is contiguous, and that their RPC
912 * credentials, NFSv4 open state, and lockowners are the same.
913 *
914 * Return 'true' if this is the case, else return 'false'.
915 */
18ad0a9f
BH
916static bool nfs_can_coalesce_requests(struct nfs_page *prev,
917 struct nfs_page *req,
918 struct nfs_pageio_descriptor *pgio)
d8a5ad75 919{
b4fdac1a 920 size_t size;
5263e31e 921 struct file_lock_context *flctx;
b4fdac1a 922
ab75e417
WAA
923 if (prev) {
924 if (!nfs_match_open_context(req->wb_context, prev->wb_context))
925 return false;
2b0143b5 926 flctx = d_inode(req->wb_context->dentry)->i_flctx;
bd61e0a9
JL
927 if (flctx != NULL &&
928 !(list_empty_careful(&flctx->flc_posix) &&
929 list_empty_careful(&flctx->flc_flock)) &&
5263e31e
JL
930 !nfs_match_lock_context(req->wb_lock_context,
931 prev->wb_lock_context))
932 return false;
ab75e417
WAA
933 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
934 return false;
78270e8f
WAA
935 if (req->wb_page == prev->wb_page) {
936 if (req->wb_pgbase != prev->wb_pgbase + prev->wb_bytes)
937 return false;
938 } else {
939 if (req->wb_pgbase != 0 ||
09cbfeaf 940 prev->wb_pgbase + prev->wb_bytes != PAGE_SIZE)
78270e8f
WAA
941 return false;
942 }
ab75e417 943 }
b4fdac1a 944 size = pgio->pg_ops->pg_test(pgio, prev, req);
f0cb9ab8
WAA
945 WARN_ON_ONCE(size > req->wb_bytes);
946 if (size && size < req->wb_bytes)
947 req->wb_bytes = size;
b4fdac1a 948 return size > 0;
d8a5ad75
TM
949}
950
951/**
bcb71bba 952 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
d8a5ad75
TM
953 * @desc: destination io descriptor
954 * @req: request
955 *
956 * Returns true if the request 'req' was successfully coalesced into the
957 * existing list of pages 'desc'.
958 */
bcb71bba
TM
959static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
960 struct nfs_page *req)
d8a5ad75 961{
48d635f1 962 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb 963
ab75e417 964 struct nfs_page *prev = NULL;
a7d42ddb
WAA
965
966 if (mirror->pg_count != 0) {
967 prev = nfs_list_entry(mirror->pg_list.prev);
5b36c7dc 968 } else {
d8007d4d
TM
969 if (desc->pg_ops->pg_init)
970 desc->pg_ops->pg_init(desc, req);
d600ad1f
PT
971 if (desc->pg_error < 0)
972 return 0;
a7d42ddb 973 mirror->pg_base = req->wb_pgbase;
5b36c7dc 974 }
ab75e417
WAA
975 if (!nfs_can_coalesce_requests(prev, req, desc))
976 return 0;
d8a5ad75 977 nfs_list_remove_request(req);
a7d42ddb
WAA
978 nfs_list_add_request(req, &mirror->pg_list);
979 mirror->pg_count += req->wb_bytes;
d8a5ad75
TM
980 return 1;
981}
982
bcb71bba
TM
983/*
984 * Helper for nfs_pageio_add_request and nfs_pageio_complete
985 */
986static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
987{
48d635f1 988 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb
WAA
989
990
991 if (!list_empty(&mirror->pg_list)) {
1751c363 992 int error = desc->pg_ops->pg_doio(desc);
bcb71bba
TM
993 if (error < 0)
994 desc->pg_error = error;
995 else
a7d42ddb 996 mirror->pg_bytes_written += mirror->pg_count;
bcb71bba 997 }
a7d42ddb
WAA
998 if (list_empty(&mirror->pg_list)) {
999 mirror->pg_count = 0;
1000 mirror->pg_base = 0;
bcb71bba
TM
1001 }
1002}
1003
1004/**
1005 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
1006 * @desc: destination io descriptor
1007 * @req: request
1008 *
2bfc6e56
WAA
1009 * This may split a request into subrequests which are all part of the
1010 * same page group.
1011 *
bcb71bba
TM
1012 * Returns true if the request 'req' was successfully coalesced into the
1013 * existing list of pages 'desc'.
1014 */
d9156f9f 1015static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
8b09bee3 1016 struct nfs_page *req)
bcb71bba 1017{
48d635f1 1018 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
a7d42ddb 1019
2bfc6e56
WAA
1020 struct nfs_page *subreq;
1021 unsigned int bytes_left = 0;
1022 unsigned int offset, pgbase;
1023
bfd484a5 1024 nfs_page_group_lock(req, false);
2bfc6e56
WAA
1025
1026 subreq = req;
1027 bytes_left = subreq->wb_bytes;
1028 offset = subreq->wb_offset;
1029 pgbase = subreq->wb_pgbase;
1030
1031 do {
1032 if (!nfs_pageio_do_add_request(desc, subreq)) {
1033 /* make sure pg_test call(s) did nothing */
1034 WARN_ON_ONCE(subreq->wb_bytes != bytes_left);
1035 WARN_ON_ONCE(subreq->wb_offset != offset);
1036 WARN_ON_ONCE(subreq->wb_pgbase != pgbase);
1037
1038 nfs_page_group_unlock(req);
1039 desc->pg_moreio = 1;
1040 nfs_pageio_doio(desc);
1041 if (desc->pg_error < 0)
1042 return 0;
a7d42ddb 1043 if (mirror->pg_recoalesce)
2bfc6e56
WAA
1044 return 0;
1045 /* retry add_request for this subreq */
bfd484a5 1046 nfs_page_group_lock(req, false);
2bfc6e56
WAA
1047 continue;
1048 }
1049
1050 /* check for buggy pg_test call(s) */
1051 WARN_ON_ONCE(subreq->wb_bytes + subreq->wb_pgbase > PAGE_SIZE);
1052 WARN_ON_ONCE(subreq->wb_bytes > bytes_left);
1053 WARN_ON_ONCE(subreq->wb_bytes == 0);
1054
1055 bytes_left -= subreq->wb_bytes;
1056 offset += subreq->wb_bytes;
1057 pgbase += subreq->wb_bytes;
1058
1059 if (bytes_left) {
1060 subreq = nfs_create_request(req->wb_context,
1061 req->wb_page,
1062 subreq, pgbase, bytes_left);
c1109558
TM
1063 if (IS_ERR(subreq))
1064 goto err_ptr;
2bfc6e56
WAA
1065 nfs_lock_request(subreq);
1066 subreq->wb_offset = offset;
1067 subreq->wb_index = req->wb_index;
1068 }
1069 } while (bytes_left > 0);
1070
1071 nfs_page_group_unlock(req);
bcb71bba 1072 return 1;
c1109558
TM
1073err_ptr:
1074 desc->pg_error = PTR_ERR(subreq);
1075 nfs_page_group_unlock(req);
1076 return 0;
bcb71bba
TM
1077}
1078
d9156f9f
TM
1079static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
1080{
48d635f1 1081 struct nfs_pgio_mirror *mirror = nfs_pgio_current_mirror(desc);
d9156f9f
TM
1082 LIST_HEAD(head);
1083
1084 do {
a7d42ddb
WAA
1085 list_splice_init(&mirror->pg_list, &head);
1086 mirror->pg_bytes_written -= mirror->pg_count;
1087 mirror->pg_count = 0;
1088 mirror->pg_base = 0;
1089 mirror->pg_recoalesce = 0;
1090
d9156f9f
TM
1091 while (!list_empty(&head)) {
1092 struct nfs_page *req;
1093
1094 req = list_first_entry(&head, struct nfs_page, wb_list);
1095 nfs_list_remove_request(req);
1096 if (__nfs_pageio_add_request(desc, req))
1097 continue;
03d5eb65
TM
1098 if (desc->pg_error < 0) {
1099 list_splice_tail(&head, &mirror->pg_list);
1100 mirror->pg_recoalesce = 1;
d9156f9f 1101 return 0;
03d5eb65 1102 }
d9156f9f
TM
1103 break;
1104 }
a7d42ddb 1105 } while (mirror->pg_recoalesce);
d9156f9f
TM
1106 return 1;
1107}
1108
a7d42ddb 1109static int nfs_pageio_add_request_mirror(struct nfs_pageio_descriptor *desc,
d9156f9f
TM
1110 struct nfs_page *req)
1111{
1112 int ret;
1113
1114 do {
1115 ret = __nfs_pageio_add_request(desc, req);
1116 if (ret)
1117 break;
1118 if (desc->pg_error < 0)
1119 break;
1120 ret = nfs_do_recoalesce(desc);
1121 } while (ret);
a7d42ddb 1122
d9156f9f
TM
1123 return ret;
1124}
1125
a7d42ddb
WAA
1126int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
1127 struct nfs_page *req)
1128{
1129 u32 midx;
1130 unsigned int pgbase, offset, bytes;
1131 struct nfs_page *dupreq, *lastreq;
1132
1133 pgbase = req->wb_pgbase;
1134 offset = req->wb_offset;
1135 bytes = req->wb_bytes;
1136
1137 nfs_pageio_setup_mirroring(desc, req);
d600ad1f 1138 if (desc->pg_error < 0)
c18b96a1 1139 goto out_failed;
a7d42ddb
WAA
1140
1141 for (midx = 0; midx < desc->pg_mirror_count; midx++) {
1142 if (midx) {
1143 nfs_page_group_lock(req, false);
1144
1145 /* find the last request */
1146 for (lastreq = req->wb_head;
1147 lastreq->wb_this_page != req->wb_head;
1148 lastreq = lastreq->wb_this_page)
1149 ;
1150
1151 dupreq = nfs_create_request(req->wb_context,
1152 req->wb_page, lastreq, pgbase, bytes);
1153
1154 if (IS_ERR(dupreq)) {
1155 nfs_page_group_unlock(req);
c18b96a1
PT
1156 desc->pg_error = PTR_ERR(dupreq);
1157 goto out_failed;
a7d42ddb
WAA
1158 }
1159
1160 nfs_lock_request(dupreq);
1161 nfs_page_group_unlock(req);
1162 dupreq->wb_offset = offset;
1163 dupreq->wb_index = req->wb_index;
1164 } else
1165 dupreq = req;
1166
47af81f2
PT
1167 if (nfs_pgio_has_mirroring(desc))
1168 desc->pg_mirror_idx = midx;
a7d42ddb 1169 if (!nfs_pageio_add_request_mirror(desc, dupreq))
c18b96a1 1170 goto out_failed;
a7d42ddb
WAA
1171 }
1172
1173 return 1;
c18b96a1
PT
1174
1175out_failed:
1176 /*
1177 * We might have failed before sending any reqs over wire.
2bff2288 1178 * Clean up rest of the reqs in mirror pg_list.
c18b96a1 1179 */
2bff2288
PT
1180 if (desc->pg_error) {
1181 struct nfs_pgio_mirror *mirror;
1182 void (*func)(struct list_head *);
1183
1184 /* remember fatal errors */
1185 if (nfs_error_is_fatal(desc->pg_error))
1186 mapping_set_error(desc->pg_inode->i_mapping,
1187 desc->pg_error);
1188
1189 func = desc->pg_completion_ops->error_cleanup;
1190 for (midx = 0; midx < desc->pg_mirror_count; midx++) {
1191 mirror = &desc->pg_mirrors[midx];
1192 func(&mirror->pg_list);
1193 }
1194 }
c18b96a1 1195 return 0;
a7d42ddb
WAA
1196}
1197
1198/*
1199 * nfs_pageio_complete_mirror - Complete I/O on the current mirror of an
1200 * nfs_pageio_descriptor
1201 * @desc: pointer to io descriptor
dfad7000 1202 * @mirror_idx: pointer to mirror index
a7d42ddb
WAA
1203 */
1204static void nfs_pageio_complete_mirror(struct nfs_pageio_descriptor *desc,
1205 u32 mirror_idx)
1206{
1207 struct nfs_pgio_mirror *mirror = &desc->pg_mirrors[mirror_idx];
1208 u32 restore_idx = desc->pg_mirror_idx;
1209
47af81f2
PT
1210 if (nfs_pgio_has_mirroring(desc))
1211 desc->pg_mirror_idx = mirror_idx;
a7d42ddb
WAA
1212 for (;;) {
1213 nfs_pageio_doio(desc);
1214 if (!mirror->pg_recoalesce)
1215 break;
1216 if (!nfs_do_recoalesce(desc))
1217 break;
1218 }
1219 desc->pg_mirror_idx = restore_idx;
1220}
1221
53113ad3
WAA
1222/*
1223 * nfs_pageio_resend - Transfer requests to new descriptor and resend
1224 * @hdr - the pgio header to move request from
1225 * @desc - the pageio descriptor to add requests to
1226 *
1227 * Try to move each request (nfs_page) from @hdr to @desc then attempt
1228 * to send them.
1229 *
1230 * Returns 0 on success and < 0 on error.
1231 */
1232int nfs_pageio_resend(struct nfs_pageio_descriptor *desc,
1233 struct nfs_pgio_header *hdr)
1234{
1235 LIST_HEAD(failed);
1236
919e3bd9 1237 desc->pg_io_completion = hdr->io_completion;
53113ad3
WAA
1238 desc->pg_dreq = hdr->dreq;
1239 while (!list_empty(&hdr->pages)) {
1240 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
1241
1242 nfs_list_remove_request(req);
1243 if (!nfs_pageio_add_request(desc, req))
1244 nfs_list_add_request(req, &failed);
1245 }
1246 nfs_pageio_complete(desc);
1247 if (!list_empty(&failed)) {
1248 list_move(&failed, &hdr->pages);
d600ad1f 1249 return desc->pg_error < 0 ? desc->pg_error : -EIO;
53113ad3
WAA
1250 }
1251 return 0;
1252}
1253EXPORT_SYMBOL_GPL(nfs_pageio_resend);
d9156f9f 1254
bcb71bba 1255/**
2176bf42 1256 * nfs_pageio_complete - Complete I/O then cleanup an nfs_pageio_descriptor
bcb71bba
TM
1257 * @desc: pointer to io descriptor
1258 */
1259void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1260{
a7d42ddb
WAA
1261 u32 midx;
1262
1263 for (midx = 0; midx < desc->pg_mirror_count; midx++)
1264 nfs_pageio_complete_mirror(desc, midx);
2176bf42
WAA
1265
1266 if (desc->pg_ops->pg_cleanup)
1267 desc->pg_ops->pg_cleanup(desc);
a7d42ddb 1268 nfs_pageio_cleanup_mirroring(desc);
bcb71bba
TM
1269}
1270
7fe7f848
TM
1271/**
1272 * nfs_pageio_cond_complete - Conditional I/O completion
1273 * @desc: pointer to io descriptor
1274 * @index: page index
1275 *
1276 * It is important to ensure that processes don't try to take locks
1277 * on non-contiguous ranges of pages as that might deadlock. This
1278 * function should be called before attempting to wait on a locked
1279 * nfs_page. It will complete the I/O if the page index 'index'
1280 * is not contiguous with the existing list of pages in 'desc'.
1281 */
1282void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
1283{
a7d42ddb
WAA
1284 struct nfs_pgio_mirror *mirror;
1285 struct nfs_page *prev;
1286 u32 midx;
1287
1288 for (midx = 0; midx < desc->pg_mirror_count; midx++) {
1289 mirror = &desc->pg_mirrors[midx];
1290 if (!list_empty(&mirror->pg_list)) {
1291 prev = nfs_list_entry(mirror->pg_list.prev);
43b7d964
BC
1292 if (index != prev->wb_index + 1) {
1293 nfs_pageio_complete(desc);
1294 break;
1295 }
a7d42ddb 1296 }
7fe7f848
TM
1297 }
1298}
1299
f7b422b1 1300int __init nfs_init_nfspagecache(void)
1da177e4
LT
1301{
1302 nfs_page_cachep = kmem_cache_create("nfs_page",
1303 sizeof(struct nfs_page),
1304 0, SLAB_HWCACHE_ALIGN,
20c2df83 1305 NULL);
1da177e4
LT
1306 if (nfs_page_cachep == NULL)
1307 return -ENOMEM;
1308
1309 return 0;
1310}
1311
266bee88 1312void nfs_destroy_nfspagecache(void)
1da177e4 1313{
1a1d92c1 1314 kmem_cache_destroy(nfs_page_cachep);
1da177e4
LT
1315}
1316
ef2c488c 1317static const struct rpc_call_ops nfs_pgio_common_ops = {
6f92fa45
AS
1318 .rpc_call_prepare = nfs_pgio_prepare,
1319 .rpc_call_done = nfs_pgio_result,
1320 .rpc_release = nfs_pgio_release,
1321};
41d8d5b7
AS
1322
1323const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1324 .pg_test = nfs_generic_pg_test,
1325 .pg_doio = nfs_generic_pg_pgios,
1326};