sched: Remove proliferation of wait_on_bit() action functions
[deliverable/linux.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
2bfc6e56 32static void nfs_free_request(struct nfs_page *);
1da177e4 33
00bfa30a 34static bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount)
30dd374f
FI
35{
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
4db6e0b7
FI
47void 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;
584aa810 56 hdr->dreq = desc->pg_dreq;
f6166384 57 hdr->layout_private = desc->pg_layout_private;
4db6e0b7 58 hdr->release = release;
061ae2ed 59 hdr->completion_ops = desc->pg_completion_ops;
584aa810
FI
60 if (hdr->completion_ops->init_hdr)
61 hdr->completion_ops->init_hdr(hdr);
4db6e0b7 62}
89d77c8f 63EXPORT_SYMBOL_GPL(nfs_pgheader_init);
4db6e0b7
FI
64
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
1da177e4
LT
77static inline struct nfs_page *
78nfs_page_alloc(void)
79{
192e501b 80 struct nfs_page *p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
72895b1a 81 if (p)
1da177e4 82 INIT_LIST_HEAD(&p->wb_list);
1da177e4
LT
83 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
577b4232
TM
92static 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);
4e857c58 103 smp_mb__after_atomic();
577b4232
TM
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
2bfc6e56
WAA
141/*
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;
2bfc6e56
WAA
151
152 WARN_ON_ONCE(head != head->wb_head);
153
f868089b 154 wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
f868089b 155 TASK_UNINTERRUPTIBLE);
2bfc6e56
WAA
156}
157
158/*
159 * nfs_page_group_unlock - unlock the head of the page group
160 * @req - request in group that is to be unlocked
161 */
162void
163nfs_page_group_unlock(struct nfs_page *req)
164{
165 struct nfs_page *head = req->wb_head;
166
167 WARN_ON_ONCE(head != head->wb_head);
168
d1e1cda8 169 smp_mb__before_atomic();
2bfc6e56 170 clear_bit(PG_HEADLOCK, &head->wb_flags);
d1e1cda8 171 smp_mb__after_atomic();
2bfc6e56
WAA
172 wake_up_bit(&head->wb_flags, PG_HEADLOCK);
173}
174
175/*
176 * nfs_page_group_sync_on_bit_locked
177 *
178 * must be called with page group lock held
179 */
180static bool
181nfs_page_group_sync_on_bit_locked(struct nfs_page *req, unsigned int bit)
182{
183 struct nfs_page *head = req->wb_head;
184 struct nfs_page *tmp;
185
186 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_flags));
187 WARN_ON_ONCE(test_and_set_bit(bit, &req->wb_flags));
188
189 tmp = req->wb_this_page;
190 while (tmp != req) {
191 if (!test_bit(bit, &tmp->wb_flags))
192 return false;
193 tmp = tmp->wb_this_page;
194 }
195
196 /* true! reset all bits */
197 tmp = req;
198 do {
199 clear_bit(bit, &tmp->wb_flags);
200 tmp = tmp->wb_this_page;
201 } while (tmp != req);
202
203 return true;
204}
205
206/*
207 * nfs_page_group_sync_on_bit - set bit on current request, but only
208 * return true if the bit is set for all requests in page group
209 * @req - request in page group
210 * @bit - PG_* bit that is used to sync page group
211 */
212bool nfs_page_group_sync_on_bit(struct nfs_page *req, unsigned int bit)
213{
214 bool ret;
215
216 nfs_page_group_lock(req);
217 ret = nfs_page_group_sync_on_bit_locked(req, bit);
218 nfs_page_group_unlock(req);
219
220 return ret;
221}
222
223/*
224 * nfs_page_group_init - Initialize the page group linkage for @req
225 * @req - a new nfs request
226 * @prev - the previous request in page group, or NULL if @req is the first
227 * or only request in the group (the head).
228 */
229static inline void
230nfs_page_group_init(struct nfs_page *req, struct nfs_page *prev)
231{
232 WARN_ON_ONCE(prev == req);
233
234 if (!prev) {
235 req->wb_head = req;
236 req->wb_this_page = req;
237 } else {
238 WARN_ON_ONCE(prev->wb_this_page != prev->wb_head);
239 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &prev->wb_head->wb_flags));
240 req->wb_head = prev->wb_head;
241 req->wb_this_page = prev->wb_this_page;
242 prev->wb_this_page = req;
243
244 /* grab extra ref if head request has extra ref from
245 * the write/commit path to handle handoff between write
246 * and commit lists */
247 if (test_bit(PG_INODE_REF, &prev->wb_head->wb_flags))
248 kref_get(&req->wb_kref);
249 }
250}
251
252/*
253 * nfs_page_group_destroy - sync the destruction of page groups
254 * @req - request that no longer needs the page group
255 *
256 * releases the page group reference from each member once all
257 * members have called this function.
258 */
259static void
260nfs_page_group_destroy(struct kref *kref)
261{
262 struct nfs_page *req = container_of(kref, struct nfs_page, wb_kref);
263 struct nfs_page *tmp, *next;
264
265 if (!nfs_page_group_sync_on_bit(req, PG_TEARDOWN))
266 return;
267
268 tmp = req;
269 do {
270 next = tmp->wb_this_page;
271 /* unlink and free */
272 tmp->wb_this_page = tmp;
273 tmp->wb_head = tmp;
274 nfs_free_request(tmp);
275 tmp = next;
276 } while (tmp != req);
277}
278
1da177e4
LT
279/**
280 * nfs_create_request - Create an NFS read/write request.
c02f557d 281 * @ctx: open context to use
1da177e4 282 * @page: page to write
2bfc6e56 283 * @last: last nfs request created for this page group or NULL if head
1da177e4
LT
284 * @offset: starting offset within the page for the write
285 * @count: number of bytes to read/write
286 *
287 * The page must be locked by the caller. This makes sure we never
a19b89ca 288 * create two different requests for the same page.
1da177e4
LT
289 * User should ensure it is safe to sleep in this function.
290 */
291struct nfs_page *
8c8f1ac1 292nfs_create_request(struct nfs_open_context *ctx, struct page *page,
2bfc6e56
WAA
293 struct nfs_page *last, unsigned int offset,
294 unsigned int count)
1da177e4 295{
1da177e4 296 struct nfs_page *req;
b3c54de6 297 struct nfs_lock_context *l_ctx;
1da177e4 298
c58c8441
TM
299 if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
300 return ERR_PTR(-EBADF);
18eb8842
TM
301 /* try to allocate the request struct */
302 req = nfs_page_alloc();
303 if (req == NULL)
304 return ERR_PTR(-ENOMEM);
1da177e4 305
015f0212 306 /* get lock context early so we can deal with alloc failures */
b3c54de6
TM
307 l_ctx = nfs_get_lock_context(ctx);
308 if (IS_ERR(l_ctx)) {
015f0212 309 nfs_page_free(req);
b3c54de6 310 return ERR_CAST(l_ctx);
015f0212 311 }
b3c54de6 312 req->wb_lock_context = l_ctx;
577b4232 313 nfs_iocounter_inc(&l_ctx->io_count);
015f0212 314
1da177e4
LT
315 /* Initialize the request struct. Initially, we assume a
316 * long write-back delay. This will be adjusted in
317 * update_nfs_request below if the region is not locked. */
318 req->wb_page = page;
d56b4ddf 319 req->wb_index = page_file_index(page);
1da177e4
LT
320 page_cache_get(page);
321 req->wb_offset = offset;
322 req->wb_pgbase = offset;
323 req->wb_bytes = count;
1da177e4 324 req->wb_context = get_nfs_open_context(ctx);
c03b4024 325 kref_init(&req->wb_kref);
2bfc6e56 326 nfs_page_group_init(req, last);
1da177e4
LT
327 return req;
328}
329
330/**
1d1afcbc 331 * nfs_unlock_request - Unlock request and wake up sleepers.
1da177e4
LT
332 * @req:
333 */
1d1afcbc 334void nfs_unlock_request(struct nfs_page *req)
1da177e4
LT
335{
336 if (!NFS_WBACK_BUSY(req)) {
337 printk(KERN_ERR "NFS: Invalid unlock attempted\n");
338 BUG();
339 }
4e857c58 340 smp_mb__before_atomic();
1da177e4 341 clear_bit(PG_BUSY, &req->wb_flags);
4e857c58 342 smp_mb__after_atomic();
464a98bd 343 wake_up_bit(&req->wb_flags, PG_BUSY);
3aff4ebb
TM
344}
345
346/**
1d1afcbc
TM
347 * nfs_unlock_and_release_request - Unlock request and release the nfs_page
348 * @req:
3aff4ebb 349 */
1d1afcbc 350void nfs_unlock_and_release_request(struct nfs_page *req)
3aff4ebb 351{
1d1afcbc 352 nfs_unlock_request(req);
1da177e4
LT
353 nfs_release_request(req);
354}
355
4d65c520 356/*
1da177e4
LT
357 * nfs_clear_request - Free up all resources allocated to the request
358 * @req:
359 *
bb6fbc45
TM
360 * Release page and open context resources associated with a read/write
361 * request after it has completed.
1da177e4 362 */
4d65c520 363static void nfs_clear_request(struct nfs_page *req)
1da177e4 364{
cd52ed35 365 struct page *page = req->wb_page;
bb6fbc45 366 struct nfs_open_context *ctx = req->wb_context;
f11ac8db 367 struct nfs_lock_context *l_ctx = req->wb_lock_context;
bb6fbc45 368
cd52ed35 369 if (page != NULL) {
cd52ed35 370 page_cache_release(page);
1da177e4
LT
371 req->wb_page = NULL;
372 }
f11ac8db 373 if (l_ctx != NULL) {
577b4232 374 nfs_iocounter_dec(&l_ctx->io_count);
f11ac8db
TM
375 nfs_put_lock_context(l_ctx);
376 req->wb_lock_context = NULL;
377 }
bb6fbc45
TM
378 if (ctx != NULL) {
379 put_nfs_open_context(ctx);
380 req->wb_context = NULL;
381 }
1da177e4
LT
382}
383
1da177e4
LT
384/**
385 * nfs_release_request - Release the count on an NFS read/write request
386 * @req: request to release
387 *
388 * Note: Should never be called with the spinlock held!
389 */
2bfc6e56 390static void nfs_free_request(struct nfs_page *req)
1da177e4 391{
2bfc6e56
WAA
392 WARN_ON_ONCE(req->wb_this_page != req);
393
394 /* extra debug: make sure no sync bits are still set */
395 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
67d0338e
WAA
396 WARN_ON_ONCE(test_bit(PG_UNLOCKPAGE, &req->wb_flags));
397 WARN_ON_ONCE(test_bit(PG_UPTODATE, &req->wb_flags));
20633f04
WAA
398 WARN_ON_ONCE(test_bit(PG_WB_END, &req->wb_flags));
399 WARN_ON_ONCE(test_bit(PG_REMOVE, &req->wb_flags));
1da177e4 400
bb6fbc45 401 /* Release struct file and open context */
1da177e4 402 nfs_clear_request(req);
1da177e4
LT
403 nfs_page_free(req);
404}
405
c03b4024
TM
406void nfs_release_request(struct nfs_page *req)
407{
2bfc6e56 408 kref_put(&req->wb_kref, nfs_page_group_destroy);
9f557cd8
TM
409}
410
1da177e4
LT
411/**
412 * nfs_wait_on_request - Wait for a request to complete.
413 * @req: request to wait upon.
414 *
150030b7 415 * Interruptible by fatal signals only.
1da177e4
LT
416 * The user is responsible for holding a count on the request.
417 */
418int
419nfs_wait_on_request(struct nfs_page *req)
420{
74316201
N
421 return wait_on_bit_io(&req->wb_flags, PG_BUSY,
422 TASK_UNINTERRUPTIBLE);
1da177e4
LT
423}
424
b4fdac1a
WAA
425/*
426 * nfs_generic_pg_test - determine if requests can be coalesced
427 * @desc: pointer to descriptor
428 * @prev: previous request in desc, or NULL
429 * @req: this request
430 *
431 * Returns zero if @req can be coalesced into @desc, otherwise it returns
432 * the size of the request.
433 */
434size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
435 struct nfs_page *prev, struct nfs_page *req)
5b36c7dc 436{
f0cb9ab8
WAA
437 if (desc->pg_count > desc->pg_bsize) {
438 /* should never happen */
439 WARN_ON_ONCE(1);
5b36c7dc 440 return 0;
f0cb9ab8 441 }
5b36c7dc 442
f0cb9ab8 443 return min(desc->pg_bsize - desc->pg_count, (size_t)req->wb_bytes);
5b36c7dc 444}
19345cb2 445EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
5b36c7dc 446
00bfa30a
AS
447static inline struct nfs_rw_header *NFS_RW_HEADER(struct nfs_pgio_header *hdr)
448{
449 return container_of(hdr, struct nfs_rw_header, header);
450}
451
4a0de55c
AS
452/**
453 * nfs_rw_header_alloc - Allocate a header for a read or write
454 * @ops: Read or write function vector
455 */
456struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *ops)
457{
458 struct nfs_rw_header *header = ops->rw_alloc_header();
459
460 if (header) {
461 struct nfs_pgio_header *hdr = &header->header;
462
463 INIT_LIST_HEAD(&hdr->pages);
4a0de55c
AS
464 spin_lock_init(&hdr->lock);
465 atomic_set(&hdr->refcnt, 0);
466 hdr->rw_ops = ops;
467 }
468 return header;
469}
470EXPORT_SYMBOL_GPL(nfs_rw_header_alloc);
471
472/*
473 * nfs_rw_header_free - Free a read or write header
474 * @hdr: The header to free
475 */
476void nfs_rw_header_free(struct nfs_pgio_header *hdr)
477{
478 hdr->rw_ops->rw_free_header(NFS_RW_HEADER(hdr));
479}
480EXPORT_SYMBOL_GPL(nfs_rw_header_free);
481
00bfa30a
AS
482/**
483 * nfs_pgio_data_alloc - Allocate pageio data
484 * @hdr: The header making a request
485 * @pagecount: Number of pages to create
486 */
ef2c488c
AS
487static struct nfs_pgio_data *nfs_pgio_data_alloc(struct nfs_pgio_header *hdr,
488 unsigned int pagecount)
00bfa30a
AS
489{
490 struct nfs_pgio_data *data, *prealloc;
491
492 prealloc = &NFS_RW_HEADER(hdr)->rpc_data;
493 if (prealloc->header == NULL)
494 data = prealloc;
495 else
496 data = kzalloc(sizeof(*data), GFP_KERNEL);
497 if (!data)
498 goto out;
499
500 if (nfs_pgarray_set(&data->pages, pagecount)) {
501 data->header = hdr;
502 atomic_inc(&hdr->refcnt);
503 } else {
504 if (data != prealloc)
505 kfree(data);
506 data = NULL;
507 }
508out:
509 return data;
510}
511
512/**
513 * nfs_pgio_data_release - Properly free pageio data
514 * @data: The data to release
515 */
516void nfs_pgio_data_release(struct nfs_pgio_data *data)
517{
518 struct nfs_pgio_header *hdr = data->header;
519 struct nfs_rw_header *pageio_header = NFS_RW_HEADER(hdr);
520
521 put_nfs_open_context(data->args.context);
522 if (data->pages.pagevec != data->pages.page_array)
523 kfree(data->pages.pagevec);
524 if (data == &pageio_header->rpc_data) {
525 data->header = NULL;
526 data = NULL;
527 }
528 if (atomic_dec_and_test(&hdr->refcnt))
529 hdr->completion_ops->completion(hdr);
530 /* Note: we only free the rpc_task after callbacks are done.
531 * See the comment in rpc_free_task() for why
532 */
533 kfree(data);
534}
535EXPORT_SYMBOL_GPL(nfs_pgio_data_release);
536
ce59515c
AS
537/**
538 * nfs_pgio_rpcsetup - Set up arguments for a pageio call
539 * @data: The pageio data
540 * @count: Number of bytes to read
541 * @offset: Initial offset
542 * @how: How to commit data (writes only)
543 * @cinfo: Commit information for the call (writes only)
544 */
ef2c488c 545static void nfs_pgio_rpcsetup(struct nfs_pgio_data *data,
ce59515c
AS
546 unsigned int count, unsigned int offset,
547 int how, struct nfs_commit_info *cinfo)
548{
549 struct nfs_page *req = data->header->req;
550
551 /* Set up the RPC argument and reply structs
552 * NB: take care not to mess about with data->commit et al. */
553
554 data->args.fh = NFS_FH(data->header->inode);
555 data->args.offset = req_offset(req) + offset;
556 /* pnfs_set_layoutcommit needs this */
557 data->mds_offset = data->args.offset;
558 data->args.pgbase = req->wb_pgbase + offset;
559 data->args.pages = data->pages.pagevec;
560 data->args.count = count;
561 data->args.context = get_nfs_open_context(req->wb_context);
562 data->args.lock_context = req->wb_lock_context;
563 data->args.stable = NFS_UNSTABLE;
564 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
565 case 0:
566 break;
567 case FLUSH_COND_STABLE:
568 if (nfs_reqs_to_commit(cinfo))
569 break;
570 default:
571 data->args.stable = NFS_FILE_SYNC;
572 }
573
574 data->res.fattr = &data->fattr;
575 data->res.count = count;
576 data->res.eof = 0;
577 data->res.verf = &data->verf;
578 nfs_fattr_init(&data->fattr);
579}
580
a4cdda59
AS
581/**
582 * nfs_pgio_prepare - Prepare pageio data to go over the wire
583 * @task: The current task
584 * @calldata: pageio data to prepare
585 */
6f92fa45 586static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
a4cdda59
AS
587{
588 struct nfs_pgio_data *data = calldata;
589 int err;
590 err = NFS_PROTO(data->header->inode)->pgio_rpc_prepare(task, data);
591 if (err)
592 rpc_exit(task, err);
593}
594
1ed26f33
AS
595int nfs_initiate_pgio(struct rpc_clnt *clnt, struct nfs_pgio_data *data,
596 const struct rpc_call_ops *call_ops, int how, int flags)
597{
598 struct rpc_task *task;
599 struct rpc_message msg = {
600 .rpc_argp = &data->args,
601 .rpc_resp = &data->res,
602 .rpc_cred = data->header->cred,
603 };
604 struct rpc_task_setup task_setup_data = {
605 .rpc_client = clnt,
606 .task = &data->task,
607 .rpc_message = &msg,
608 .callback_ops = call_ops,
609 .callback_data = data,
610 .workqueue = nfsiod_workqueue,
611 .flags = RPC_TASK_ASYNC | flags,
612 };
613 int ret = 0;
614
615 data->header->rw_ops->rw_initiate(data, &msg, &task_setup_data, how);
616
617 dprintk("NFS: %5u initiated pgio call "
618 "(req %s/%llu, %u bytes @ offset %llu)\n",
619 data->task.tk_pid,
620 data->header->inode->i_sb->s_id,
621 (unsigned long long)NFS_FILEID(data->header->inode),
622 data->args.count,
623 (unsigned long long)data->args.offset);
624
625 task = rpc_run_task(&task_setup_data);
626 if (IS_ERR(task)) {
627 ret = PTR_ERR(task);
628 goto out;
629 }
630 if (how & FLUSH_SYNC) {
631 ret = rpc_wait_for_completion_task(task);
632 if (ret == 0)
633 ret = task->tk_status;
634 }
635 rpc_put_task(task);
636out:
637 return ret;
638}
639EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
640
844c9e69
AS
641/**
642 * nfs_pgio_error - Clean up from a pageio error
643 * @desc: IO descriptor
644 * @hdr: pageio header
645 */
ef2c488c 646static int nfs_pgio_error(struct nfs_pageio_descriptor *desc,
844c9e69
AS
647 struct nfs_pgio_header *hdr)
648{
844c9e69 649 set_bit(NFS_IOHDR_REDO, &hdr->flags);
7f714720
WAA
650 nfs_pgio_data_release(hdr->data);
651 hdr->data = NULL;
844c9e69
AS
652 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
653 return -ENOMEM;
654}
655
a4cdda59
AS
656/**
657 * nfs_pgio_release - Release pageio data
658 * @calldata: The pageio data to release
659 */
6f92fa45 660static void nfs_pgio_release(void *calldata)
a4cdda59
AS
661{
662 struct nfs_pgio_data *data = calldata;
663 if (data->header->rw_ops->rw_release)
664 data->header->rw_ops->rw_release(data);
665 nfs_pgio_data_release(data);
666}
667
1da177e4 668/**
d8a5ad75
TM
669 * nfs_pageio_init - initialise a page io descriptor
670 * @desc: pointer to descriptor
bcb71bba
TM
671 * @inode: pointer to inode
672 * @doio: pointer to io function
673 * @bsize: io block size
674 * @io_flags: extra parameters for the io function
d8a5ad75 675 */
bcb71bba
TM
676void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
677 struct inode *inode,
1751c363 678 const struct nfs_pageio_ops *pg_ops,
061ae2ed 679 const struct nfs_pgio_completion_ops *compl_ops,
4a0de55c 680 const struct nfs_rw_ops *rw_ops,
84dde76c 681 size_t bsize,
bcb71bba 682 int io_flags)
d8a5ad75
TM
683{
684 INIT_LIST_HEAD(&desc->pg_list);
bcb71bba 685 desc->pg_bytes_written = 0;
d8a5ad75
TM
686 desc->pg_count = 0;
687 desc->pg_bsize = bsize;
688 desc->pg_base = 0;
b31268ac 689 desc->pg_moreio = 0;
d9156f9f 690 desc->pg_recoalesce = 0;
bcb71bba 691 desc->pg_inode = inode;
1751c363 692 desc->pg_ops = pg_ops;
061ae2ed 693 desc->pg_completion_ops = compl_ops;
4a0de55c 694 desc->pg_rw_ops = rw_ops;
bcb71bba
TM
695 desc->pg_ioflags = io_flags;
696 desc->pg_error = 0;
94ad1c80 697 desc->pg_lseg = NULL;
584aa810 698 desc->pg_dreq = NULL;
f6166384 699 desc->pg_layout_private = NULL;
d8a5ad75 700}
89d77c8f 701EXPORT_SYMBOL_GPL(nfs_pageio_init);
d8a5ad75 702
0eecb214
AS
703/**
704 * nfs_pgio_result - Basic pageio error handling
705 * @task: The task that ran
706 * @calldata: Pageio data to check
707 */
6f92fa45 708static void nfs_pgio_result(struct rpc_task *task, void *calldata)
0eecb214
AS
709{
710 struct nfs_pgio_data *data = calldata;
711 struct inode *inode = data->header->inode;
712
713 dprintk("NFS: %s: %5u, (status %d)\n", __func__,
714 task->tk_pid, task->tk_status);
715
716 if (data->header->rw_ops->rw_done(task, data, inode) != 0)
717 return;
718 if (task->tk_status < 0)
719 nfs_set_pgio_error(data->header, task->tk_status, data->args.offset);
720 else
721 data->header->rw_ops->rw_result(task, data);
722}
723
ef2c488c
AS
724/*
725 * Create an RPC task for the given read or write request and kick it.
726 * The page must have been locked by the caller.
727 *
728 * It may happen that the page we're passed is not marked dirty.
729 * This is the case if nfs_updatepage detects a conflicting request
730 * that has been written but not committed.
731 */
f0cb9ab8
WAA
732int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
733 struct nfs_pgio_header *hdr)
ef2c488c
AS
734{
735 struct nfs_page *req;
736 struct page **pages;
737 struct nfs_pgio_data *data;
738 struct list_head *head = &desc->pg_list;
739 struct nfs_commit_info cinfo;
740
741 data = nfs_pgio_data_alloc(hdr, nfs_page_array_len(desc->pg_base,
742 desc->pg_count));
743 if (!data)
744 return nfs_pgio_error(desc, hdr);
745
746 nfs_init_cinfo(&cinfo, desc->pg_inode, desc->pg_dreq);
747 pages = data->pages.pagevec;
748 while (!list_empty(head)) {
749 req = nfs_list_entry(head->next);
750 nfs_list_remove_request(req);
751 nfs_list_add_request(req, &hdr->pages);
752 *pages++ = req->wb_page;
753 }
754
755 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
756 (desc->pg_moreio || nfs_reqs_to_commit(&cinfo)))
757 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
758
759 /* Set up the argument struct */
760 nfs_pgio_rpcsetup(data, desc->pg_count, 0, desc->pg_ioflags, &cinfo);
7f714720 761 hdr->data = data;
ef2c488c
AS
762 desc->pg_rpc_callops = &nfs_pgio_common_ops;
763 return 0;
764}
f0cb9ab8 765EXPORT_SYMBOL_GPL(nfs_generic_pgio);
ef2c488c 766
41d8d5b7 767static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
cf485fcd
AS
768{
769 struct nfs_rw_header *rw_hdr;
770 struct nfs_pgio_header *hdr;
771 int ret;
772
773 rw_hdr = nfs_rw_header_alloc(desc->pg_rw_ops);
774 if (!rw_hdr) {
775 desc->pg_completion_ops->error_cleanup(&desc->pg_list);
776 return -ENOMEM;
777 }
778 hdr = &rw_hdr->header;
779 nfs_pgheader_init(desc, hdr, nfs_rw_header_free);
780 atomic_inc(&hdr->refcnt);
781 ret = nfs_generic_pgio(desc, hdr);
782 if (ret == 0)
7f714720
WAA
783 ret = nfs_initiate_pgio(NFS_CLIENT(hdr->inode),
784 hdr->data, desc->pg_rpc_callops,
785 desc->pg_ioflags, 0);
cf485fcd
AS
786 if (atomic_dec_and_test(&hdr->refcnt))
787 hdr->completion_ops->completion(hdr);
788 return ret;
789}
790
4109bb74
TM
791static bool nfs_match_open_context(const struct nfs_open_context *ctx1,
792 const struct nfs_open_context *ctx2)
793{
794 return ctx1->cred == ctx2->cred && ctx1->state == ctx2->state;
795}
796
797static bool nfs_match_lock_context(const struct nfs_lock_context *l1,
798 const struct nfs_lock_context *l2)
799{
800 return l1->lockowner.l_owner == l2->lockowner.l_owner
801 && l1->lockowner.l_pid == l2->lockowner.l_pid;
802}
803
d8a5ad75
TM
804/**
805 * nfs_can_coalesce_requests - test two requests for compatibility
806 * @prev: pointer to nfs_page
807 * @req: pointer to nfs_page
808 *
809 * The nfs_page structures 'prev' and 'req' are compared to ensure that the
810 * page data area they describe is contiguous, and that their RPC
811 * credentials, NFSv4 open state, and lockowners are the same.
812 *
813 * Return 'true' if this is the case, else return 'false'.
814 */
18ad0a9f
BH
815static bool nfs_can_coalesce_requests(struct nfs_page *prev,
816 struct nfs_page *req,
817 struct nfs_pageio_descriptor *pgio)
d8a5ad75 818{
b4fdac1a
WAA
819 size_t size;
820
ab75e417
WAA
821 if (prev) {
822 if (!nfs_match_open_context(req->wb_context, prev->wb_context))
823 return false;
824 if (req->wb_context->dentry->d_inode->i_flock != NULL &&
825 !nfs_match_lock_context(req->wb_lock_context,
826 prev->wb_lock_context))
827 return false;
ab75e417
WAA
828 if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
829 return false;
830 }
b4fdac1a 831 size = pgio->pg_ops->pg_test(pgio, prev, req);
f0cb9ab8
WAA
832 WARN_ON_ONCE(size > req->wb_bytes);
833 if (size && size < req->wb_bytes)
834 req->wb_bytes = size;
b4fdac1a 835 return size > 0;
d8a5ad75
TM
836}
837
838/**
bcb71bba 839 * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
d8a5ad75
TM
840 * @desc: destination io descriptor
841 * @req: request
842 *
843 * Returns true if the request 'req' was successfully coalesced into the
844 * existing list of pages 'desc'.
845 */
bcb71bba
TM
846static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
847 struct nfs_page *req)
d8a5ad75 848{
ab75e417 849 struct nfs_page *prev = NULL;
d8a5ad75 850 if (desc->pg_count != 0) {
d8a5ad75 851 prev = nfs_list_entry(desc->pg_list.prev);
5b36c7dc 852 } else {
d8007d4d
TM
853 if (desc->pg_ops->pg_init)
854 desc->pg_ops->pg_init(desc, req);
d8a5ad75 855 desc->pg_base = req->wb_pgbase;
5b36c7dc 856 }
ab75e417
WAA
857 if (!nfs_can_coalesce_requests(prev, req, desc))
858 return 0;
d8a5ad75
TM
859 nfs_list_remove_request(req);
860 nfs_list_add_request(req, &desc->pg_list);
5b36c7dc 861 desc->pg_count += req->wb_bytes;
d8a5ad75
TM
862 return 1;
863}
864
bcb71bba
TM
865/*
866 * Helper for nfs_pageio_add_request and nfs_pageio_complete
867 */
868static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
869{
870 if (!list_empty(&desc->pg_list)) {
1751c363 871 int error = desc->pg_ops->pg_doio(desc);
bcb71bba
TM
872 if (error < 0)
873 desc->pg_error = error;
874 else
875 desc->pg_bytes_written += desc->pg_count;
876 }
877 if (list_empty(&desc->pg_list)) {
878 desc->pg_count = 0;
879 desc->pg_base = 0;
880 }
881}
882
883/**
884 * nfs_pageio_add_request - Attempt to coalesce a request into a page list.
885 * @desc: destination io descriptor
886 * @req: request
887 *
2bfc6e56
WAA
888 * This may split a request into subrequests which are all part of the
889 * same page group.
890 *
bcb71bba
TM
891 * Returns true if the request 'req' was successfully coalesced into the
892 * existing list of pages 'desc'.
893 */
d9156f9f 894static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
8b09bee3 895 struct nfs_page *req)
bcb71bba 896{
2bfc6e56
WAA
897 struct nfs_page *subreq;
898 unsigned int bytes_left = 0;
899 unsigned int offset, pgbase;
900
901 nfs_page_group_lock(req);
902
903 subreq = req;
904 bytes_left = subreq->wb_bytes;
905 offset = subreq->wb_offset;
906 pgbase = subreq->wb_pgbase;
907
908 do {
909 if (!nfs_pageio_do_add_request(desc, subreq)) {
910 /* make sure pg_test call(s) did nothing */
911 WARN_ON_ONCE(subreq->wb_bytes != bytes_left);
912 WARN_ON_ONCE(subreq->wb_offset != offset);
913 WARN_ON_ONCE(subreq->wb_pgbase != pgbase);
914
915 nfs_page_group_unlock(req);
916 desc->pg_moreio = 1;
917 nfs_pageio_doio(desc);
918 if (desc->pg_error < 0)
919 return 0;
920 desc->pg_moreio = 0;
921 if (desc->pg_recoalesce)
922 return 0;
923 /* retry add_request for this subreq */
924 nfs_page_group_lock(req);
925 continue;
926 }
927
928 /* check for buggy pg_test call(s) */
929 WARN_ON_ONCE(subreq->wb_bytes + subreq->wb_pgbase > PAGE_SIZE);
930 WARN_ON_ONCE(subreq->wb_bytes > bytes_left);
931 WARN_ON_ONCE(subreq->wb_bytes == 0);
932
933 bytes_left -= subreq->wb_bytes;
934 offset += subreq->wb_bytes;
935 pgbase += subreq->wb_bytes;
936
937 if (bytes_left) {
938 subreq = nfs_create_request(req->wb_context,
939 req->wb_page,
940 subreq, pgbase, bytes_left);
c1109558
TM
941 if (IS_ERR(subreq))
942 goto err_ptr;
2bfc6e56
WAA
943 nfs_lock_request(subreq);
944 subreq->wb_offset = offset;
945 subreq->wb_index = req->wb_index;
946 }
947 } while (bytes_left > 0);
948
949 nfs_page_group_unlock(req);
bcb71bba 950 return 1;
c1109558
TM
951err_ptr:
952 desc->pg_error = PTR_ERR(subreq);
953 nfs_page_group_unlock(req);
954 return 0;
bcb71bba
TM
955}
956
d9156f9f
TM
957static int nfs_do_recoalesce(struct nfs_pageio_descriptor *desc)
958{
959 LIST_HEAD(head);
960
961 do {
962 list_splice_init(&desc->pg_list, &head);
963 desc->pg_bytes_written -= desc->pg_count;
964 desc->pg_count = 0;
965 desc->pg_base = 0;
966 desc->pg_recoalesce = 0;
967
968 while (!list_empty(&head)) {
969 struct nfs_page *req;
970
971 req = list_first_entry(&head, struct nfs_page, wb_list);
972 nfs_list_remove_request(req);
973 if (__nfs_pageio_add_request(desc, req))
974 continue;
975 if (desc->pg_error < 0)
976 return 0;
977 break;
978 }
979 } while (desc->pg_recoalesce);
980 return 1;
981}
982
983int nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
984 struct nfs_page *req)
985{
986 int ret;
987
988 do {
989 ret = __nfs_pageio_add_request(desc, req);
990 if (ret)
991 break;
992 if (desc->pg_error < 0)
993 break;
994 ret = nfs_do_recoalesce(desc);
995 } while (ret);
996 return ret;
997}
89d77c8f 998EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
d9156f9f 999
bcb71bba
TM
1000/**
1001 * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
1002 * @desc: pointer to io descriptor
1003 */
1004void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1005{
d9156f9f
TM
1006 for (;;) {
1007 nfs_pageio_doio(desc);
1008 if (!desc->pg_recoalesce)
1009 break;
1010 if (!nfs_do_recoalesce(desc))
1011 break;
1012 }
bcb71bba 1013}
89d77c8f 1014EXPORT_SYMBOL_GPL(nfs_pageio_complete);
bcb71bba 1015
7fe7f848
TM
1016/**
1017 * nfs_pageio_cond_complete - Conditional I/O completion
1018 * @desc: pointer to io descriptor
1019 * @index: page index
1020 *
1021 * It is important to ensure that processes don't try to take locks
1022 * on non-contiguous ranges of pages as that might deadlock. This
1023 * function should be called before attempting to wait on a locked
1024 * nfs_page. It will complete the I/O if the page index 'index'
1025 * is not contiguous with the existing list of pages in 'desc'.
1026 */
1027void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *desc, pgoff_t index)
1028{
1029 if (!list_empty(&desc->pg_list)) {
1030 struct nfs_page *prev = nfs_list_entry(desc->pg_list.prev);
1031 if (index != prev->wb_index + 1)
d9156f9f 1032 nfs_pageio_complete(desc);
7fe7f848
TM
1033 }
1034}
1035
f7b422b1 1036int __init nfs_init_nfspagecache(void)
1da177e4
LT
1037{
1038 nfs_page_cachep = kmem_cache_create("nfs_page",
1039 sizeof(struct nfs_page),
1040 0, SLAB_HWCACHE_ALIGN,
20c2df83 1041 NULL);
1da177e4
LT
1042 if (nfs_page_cachep == NULL)
1043 return -ENOMEM;
1044
1045 return 0;
1046}
1047
266bee88 1048void nfs_destroy_nfspagecache(void)
1da177e4 1049{
1a1d92c1 1050 kmem_cache_destroy(nfs_page_cachep);
1da177e4
LT
1051}
1052
ef2c488c 1053static const struct rpc_call_ops nfs_pgio_common_ops = {
6f92fa45
AS
1054 .rpc_call_prepare = nfs_pgio_prepare,
1055 .rpc_call_done = nfs_pgio_result,
1056 .rpc_release = nfs_pgio_release,
1057};
41d8d5b7
AS
1058
1059const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1060 .pg_test = nfs_generic_pg_test,
1061 .pg_doio = nfs_generic_pg_pgios,
1062};
This page took 0.934549 seconds and 5 git commands to generate.