xref: /openbmc/linux/fs/nfs/pagelist.c (revision 743162013d40ca612b4cb53d3a200dff2d9ab26e)
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 
12 #include <linux/slab.h>
13 #include <linux/file.h>
14 #include <linux/sched.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/nfs.h>
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>
22 #include <linux/export.h>
23 
24 #include "internal.h"
25 #include "pnfs.h"
26 
27 #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
28 
29 static struct kmem_cache *nfs_page_cachep;
30 static const struct rpc_call_ops nfs_pgio_common_ops;
31 
32 static void nfs_free_request(struct nfs_page *);
33 
34 static bool nfs_pgarray_set(struct nfs_page_array *p, unsigned int pagecount)
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 
47 void 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;
56 	hdr->dreq = desc->pg_dreq;
57 	hdr->layout_private = desc->pg_layout_private;
58 	hdr->release = release;
59 	hdr->completion_ops = desc->pg_completion_ops;
60 	if (hdr->completion_ops->init_hdr)
61 		hdr->completion_ops->init_hdr(hdr);
62 }
63 EXPORT_SYMBOL_GPL(nfs_pgheader_init);
64 
65 void 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 
77 static inline struct nfs_page *
78 nfs_page_alloc(void)
79 {
80 	struct nfs_page	*p = kmem_cache_zalloc(nfs_page_cachep, GFP_NOIO);
81 	if (p)
82 		INIT_LIST_HEAD(&p->wb_list);
83 	return p;
84 }
85 
86 static inline void
87 nfs_page_free(struct nfs_page *p)
88 {
89 	kmem_cache_free(nfs_page_cachep, p);
90 }
91 
92 static void
93 nfs_iocounter_inc(struct nfs_io_counter *c)
94 {
95 	atomic_inc(&c->io_count);
96 }
97 
98 static void
99 nfs_iocounter_dec(struct nfs_io_counter *c)
100 {
101 	if (atomic_dec_and_test(&c->io_count)) {
102 		clear_bit(NFS_IO_INPROGRESS, &c->flags);
103 		smp_mb__after_atomic();
104 		wake_up_bit(&c->flags, NFS_IO_INPROGRESS);
105 	}
106 }
107 
108 static 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  */
133 int
134 nfs_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 
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  */
147 void
148 nfs_page_group_lock(struct nfs_page *req)
149 {
150 	struct nfs_page *head = req->wb_head;
151 
152 	WARN_ON_ONCE(head != head->wb_head);
153 
154 	wait_on_bit_lock(&head->wb_flags, PG_HEADLOCK,
155 			TASK_UNINTERRUPTIBLE);
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  */
162 void
163 nfs_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 
169 	smp_mb__before_atomic();
170 	clear_bit(PG_HEADLOCK, &head->wb_flags);
171 	smp_mb__after_atomic();
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  */
180 static bool
181 nfs_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  */
212 bool 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  */
229 static inline void
230 nfs_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  */
259 static void
260 nfs_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 
279 /**
280  * nfs_create_request - Create an NFS read/write request.
281  * @ctx: open context to use
282  * @page: page to write
283  * @last: last nfs request created for this page group or NULL if head
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
288  * create two different requests for the same page.
289  * User should ensure it is safe to sleep in this function.
290  */
291 struct nfs_page *
292 nfs_create_request(struct nfs_open_context *ctx, struct page *page,
293 		   struct nfs_page *last, unsigned int offset,
294 		   unsigned int count)
295 {
296 	struct nfs_page		*req;
297 	struct nfs_lock_context *l_ctx;
298 
299 	if (test_bit(NFS_CONTEXT_BAD, &ctx->flags))
300 		return ERR_PTR(-EBADF);
301 	/* try to allocate the request struct */
302 	req = nfs_page_alloc();
303 	if (req == NULL)
304 		return ERR_PTR(-ENOMEM);
305 
306 	/* get lock context early so we can deal with alloc failures */
307 	l_ctx = nfs_get_lock_context(ctx);
308 	if (IS_ERR(l_ctx)) {
309 		nfs_page_free(req);
310 		return ERR_CAST(l_ctx);
311 	}
312 	req->wb_lock_context = l_ctx;
313 	nfs_iocounter_inc(&l_ctx->io_count);
314 
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;
319 	req->wb_index	= page_file_index(page);
320 	page_cache_get(page);
321 	req->wb_offset  = offset;
322 	req->wb_pgbase	= offset;
323 	req->wb_bytes   = count;
324 	req->wb_context = get_nfs_open_context(ctx);
325 	kref_init(&req->wb_kref);
326 	nfs_page_group_init(req, last);
327 	return req;
328 }
329 
330 /**
331  * nfs_unlock_request - Unlock request and wake up sleepers.
332  * @req:
333  */
334 void nfs_unlock_request(struct nfs_page *req)
335 {
336 	if (!NFS_WBACK_BUSY(req)) {
337 		printk(KERN_ERR "NFS: Invalid unlock attempted\n");
338 		BUG();
339 	}
340 	smp_mb__before_atomic();
341 	clear_bit(PG_BUSY, &req->wb_flags);
342 	smp_mb__after_atomic();
343 	wake_up_bit(&req->wb_flags, PG_BUSY);
344 }
345 
346 /**
347  * nfs_unlock_and_release_request - Unlock request and release the nfs_page
348  * @req:
349  */
350 void nfs_unlock_and_release_request(struct nfs_page *req)
351 {
352 	nfs_unlock_request(req);
353 	nfs_release_request(req);
354 }
355 
356 /*
357  * nfs_clear_request - Free up all resources allocated to the request
358  * @req:
359  *
360  * Release page and open context resources associated with a read/write
361  * request after it has completed.
362  */
363 static void nfs_clear_request(struct nfs_page *req)
364 {
365 	struct page *page = req->wb_page;
366 	struct nfs_open_context *ctx = req->wb_context;
367 	struct nfs_lock_context *l_ctx = req->wb_lock_context;
368 
369 	if (page != NULL) {
370 		page_cache_release(page);
371 		req->wb_page = NULL;
372 	}
373 	if (l_ctx != NULL) {
374 		nfs_iocounter_dec(&l_ctx->io_count);
375 		nfs_put_lock_context(l_ctx);
376 		req->wb_lock_context = NULL;
377 	}
378 	if (ctx != NULL) {
379 		put_nfs_open_context(ctx);
380 		req->wb_context = NULL;
381 	}
382 }
383 
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  */
390 static void nfs_free_request(struct nfs_page *req)
391 {
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));
396 	WARN_ON_ONCE(test_bit(PG_UNLOCKPAGE, &req->wb_flags));
397 	WARN_ON_ONCE(test_bit(PG_UPTODATE, &req->wb_flags));
398 	WARN_ON_ONCE(test_bit(PG_WB_END, &req->wb_flags));
399 	WARN_ON_ONCE(test_bit(PG_REMOVE, &req->wb_flags));
400 
401 	/* Release struct file and open context */
402 	nfs_clear_request(req);
403 	nfs_page_free(req);
404 }
405 
406 void nfs_release_request(struct nfs_page *req)
407 {
408 	kref_put(&req->wb_kref, nfs_page_group_destroy);
409 }
410 
411 /**
412  * nfs_wait_on_request - Wait for a request to complete.
413  * @req: request to wait upon.
414  *
415  * Interruptible by fatal signals only.
416  * The user is responsible for holding a count on the request.
417  */
418 int
419 nfs_wait_on_request(struct nfs_page *req)
420 {
421 	return wait_on_bit_io(&req->wb_flags, PG_BUSY,
422 			      TASK_UNINTERRUPTIBLE);
423 }
424 
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  */
434 size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
435 			   struct nfs_page *prev, struct nfs_page *req)
436 {
437 	if (desc->pg_count > desc->pg_bsize) {
438 		/* should never happen */
439 		WARN_ON_ONCE(1);
440 		return 0;
441 	}
442 
443 	return min(desc->pg_bsize - desc->pg_count, (size_t)req->wb_bytes);
444 }
445 EXPORT_SYMBOL_GPL(nfs_generic_pg_test);
446 
447 static 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 
452 /**
453  * nfs_rw_header_alloc - Allocate a header for a read or write
454  * @ops: Read or write function vector
455  */
456 struct 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);
464 		spin_lock_init(&hdr->lock);
465 		atomic_set(&hdr->refcnt, 0);
466 		hdr->rw_ops = ops;
467 	}
468 	return header;
469 }
470 EXPORT_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  */
476 void nfs_rw_header_free(struct nfs_pgio_header *hdr)
477 {
478 	hdr->rw_ops->rw_free_header(NFS_RW_HEADER(hdr));
479 }
480 EXPORT_SYMBOL_GPL(nfs_rw_header_free);
481 
482 /**
483  * nfs_pgio_data_alloc - Allocate pageio data
484  * @hdr: The header making a request
485  * @pagecount: Number of pages to create
486  */
487 static struct nfs_pgio_data *nfs_pgio_data_alloc(struct nfs_pgio_header *hdr,
488 						 unsigned int pagecount)
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 	}
508 out:
509 	return data;
510 }
511 
512 /**
513  * nfs_pgio_data_release - Properly free pageio data
514  * @data: The data to release
515  */
516 void 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 }
535 EXPORT_SYMBOL_GPL(nfs_pgio_data_release);
536 
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  */
545 static void nfs_pgio_rpcsetup(struct nfs_pgio_data *data,
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 
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  */
586 static void nfs_pgio_prepare(struct rpc_task *task, void *calldata)
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 
595 int 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);
636 out:
637 	return ret;
638 }
639 EXPORT_SYMBOL_GPL(nfs_initiate_pgio);
640 
641 /**
642  * nfs_pgio_error - Clean up from a pageio error
643  * @desc: IO descriptor
644  * @hdr: pageio header
645  */
646 static int nfs_pgio_error(struct nfs_pageio_descriptor *desc,
647 			  struct nfs_pgio_header *hdr)
648 {
649 	set_bit(NFS_IOHDR_REDO, &hdr->flags);
650 	nfs_pgio_data_release(hdr->data);
651 	hdr->data = NULL;
652 	desc->pg_completion_ops->error_cleanup(&desc->pg_list);
653 	return -ENOMEM;
654 }
655 
656 /**
657  * nfs_pgio_release - Release pageio data
658  * @calldata: The pageio data to release
659  */
660 static void nfs_pgio_release(void *calldata)
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 
668 /**
669  * nfs_pageio_init - initialise a page io descriptor
670  * @desc: pointer to descriptor
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
675  */
676 void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
677 		     struct inode *inode,
678 		     const struct nfs_pageio_ops *pg_ops,
679 		     const struct nfs_pgio_completion_ops *compl_ops,
680 		     const struct nfs_rw_ops *rw_ops,
681 		     size_t bsize,
682 		     int io_flags)
683 {
684 	INIT_LIST_HEAD(&desc->pg_list);
685 	desc->pg_bytes_written = 0;
686 	desc->pg_count = 0;
687 	desc->pg_bsize = bsize;
688 	desc->pg_base = 0;
689 	desc->pg_moreio = 0;
690 	desc->pg_recoalesce = 0;
691 	desc->pg_inode = inode;
692 	desc->pg_ops = pg_ops;
693 	desc->pg_completion_ops = compl_ops;
694 	desc->pg_rw_ops = rw_ops;
695 	desc->pg_ioflags = io_flags;
696 	desc->pg_error = 0;
697 	desc->pg_lseg = NULL;
698 	desc->pg_dreq = NULL;
699 	desc->pg_layout_private = NULL;
700 }
701 EXPORT_SYMBOL_GPL(nfs_pageio_init);
702 
703 /**
704  * nfs_pgio_result - Basic pageio error handling
705  * @task: The task that ran
706  * @calldata: Pageio data to check
707  */
708 static void nfs_pgio_result(struct rpc_task *task, void *calldata)
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 
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  */
732 int nfs_generic_pgio(struct nfs_pageio_descriptor *desc,
733 		     struct nfs_pgio_header *hdr)
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);
761 	hdr->data = data;
762 	desc->pg_rpc_callops = &nfs_pgio_common_ops;
763 	return 0;
764 }
765 EXPORT_SYMBOL_GPL(nfs_generic_pgio);
766 
767 static int nfs_generic_pg_pgios(struct nfs_pageio_descriptor *desc)
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)
783 		ret = nfs_initiate_pgio(NFS_CLIENT(hdr->inode),
784 					hdr->data, desc->pg_rpc_callops,
785 					desc->pg_ioflags, 0);
786 	if (atomic_dec_and_test(&hdr->refcnt))
787 		hdr->completion_ops->completion(hdr);
788 	return ret;
789 }
790 
791 static 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 
797 static 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 
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  */
815 static bool nfs_can_coalesce_requests(struct nfs_page *prev,
816 				      struct nfs_page *req,
817 				      struct nfs_pageio_descriptor *pgio)
818 {
819 	size_t size;
820 
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;
828 		if (req_offset(req) != req_offset(prev) + prev->wb_bytes)
829 			return false;
830 	}
831 	size = pgio->pg_ops->pg_test(pgio, prev, req);
832 	WARN_ON_ONCE(size > req->wb_bytes);
833 	if (size && size < req->wb_bytes)
834 		req->wb_bytes = size;
835 	return size > 0;
836 }
837 
838 /**
839  * nfs_pageio_do_add_request - Attempt to coalesce a request into a page list.
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  */
846 static int nfs_pageio_do_add_request(struct nfs_pageio_descriptor *desc,
847 				     struct nfs_page *req)
848 {
849 	struct nfs_page *prev = NULL;
850 	if (desc->pg_count != 0) {
851 		prev = nfs_list_entry(desc->pg_list.prev);
852 	} else {
853 		if (desc->pg_ops->pg_init)
854 			desc->pg_ops->pg_init(desc, req);
855 		desc->pg_base = req->wb_pgbase;
856 	}
857 	if (!nfs_can_coalesce_requests(prev, req, desc))
858 		return 0;
859 	nfs_list_remove_request(req);
860 	nfs_list_add_request(req, &desc->pg_list);
861 	desc->pg_count += req->wb_bytes;
862 	return 1;
863 }
864 
865 /*
866  * Helper for nfs_pageio_add_request and nfs_pageio_complete
867  */
868 static void nfs_pageio_doio(struct nfs_pageio_descriptor *desc)
869 {
870 	if (!list_empty(&desc->pg_list)) {
871 		int error = desc->pg_ops->pg_doio(desc);
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  *
888  * This may split a request into subrequests which are all part of the
889  * same page group.
890  *
891  * Returns true if the request 'req' was successfully coalesced into the
892  * existing list of pages 'desc'.
893  */
894 static int __nfs_pageio_add_request(struct nfs_pageio_descriptor *desc,
895 			   struct nfs_page *req)
896 {
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);
941 			if (IS_ERR(subreq))
942 				goto err_ptr;
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);
950 	return 1;
951 err_ptr:
952 	desc->pg_error = PTR_ERR(subreq);
953 	nfs_page_group_unlock(req);
954 	return 0;
955 }
956 
957 static 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 
983 int 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 }
998 EXPORT_SYMBOL_GPL(nfs_pageio_add_request);
999 
1000 /**
1001  * nfs_pageio_complete - Complete I/O on an nfs_pageio_descriptor
1002  * @desc: pointer to io descriptor
1003  */
1004 void nfs_pageio_complete(struct nfs_pageio_descriptor *desc)
1005 {
1006 	for (;;) {
1007 		nfs_pageio_doio(desc);
1008 		if (!desc->pg_recoalesce)
1009 			break;
1010 		if (!nfs_do_recoalesce(desc))
1011 			break;
1012 	}
1013 }
1014 EXPORT_SYMBOL_GPL(nfs_pageio_complete);
1015 
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  */
1027 void 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)
1032 			nfs_pageio_complete(desc);
1033 	}
1034 }
1035 
1036 int __init nfs_init_nfspagecache(void)
1037 {
1038 	nfs_page_cachep = kmem_cache_create("nfs_page",
1039 					    sizeof(struct nfs_page),
1040 					    0, SLAB_HWCACHE_ALIGN,
1041 					    NULL);
1042 	if (nfs_page_cachep == NULL)
1043 		return -ENOMEM;
1044 
1045 	return 0;
1046 }
1047 
1048 void nfs_destroy_nfspagecache(void)
1049 {
1050 	kmem_cache_destroy(nfs_page_cachep);
1051 }
1052 
1053 static const struct rpc_call_ops nfs_pgio_common_ops = {
1054 	.rpc_call_prepare = nfs_pgio_prepare,
1055 	.rpc_call_done = nfs_pgio_result,
1056 	.rpc_release = nfs_pgio_release,
1057 };
1058 
1059 const struct nfs_pageio_ops nfs_pgio_rw_ops = {
1060 	.pg_test = nfs_generic_pg_test,
1061 	.pg_doio = nfs_generic_pg_pgios,
1062 };
1063