xref: /openbmc/linux/fs/nfs/write.c (revision 1c2dd16a)
1 /*
2  * linux/fs/nfs/write.c
3  *
4  * Write file data over NFS.
5  *
6  * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
7  */
8 
9 #include <linux/types.h>
10 #include <linux/slab.h>
11 #include <linux/mm.h>
12 #include <linux/pagemap.h>
13 #include <linux/file.h>
14 #include <linux/writeback.h>
15 #include <linux/swap.h>
16 #include <linux/migrate.h>
17 
18 #include <linux/sunrpc/clnt.h>
19 #include <linux/nfs_fs.h>
20 #include <linux/nfs_mount.h>
21 #include <linux/nfs_page.h>
22 #include <linux/backing-dev.h>
23 #include <linux/export.h>
24 #include <linux/freezer.h>
25 #include <linux/wait.h>
26 
27 #include <linux/uaccess.h>
28 
29 #include "delegation.h"
30 #include "internal.h"
31 #include "iostat.h"
32 #include "nfs4_fs.h"
33 #include "fscache.h"
34 #include "pnfs.h"
35 
36 #include "nfstrace.h"
37 
38 #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
39 
40 #define MIN_POOL_WRITE		(32)
41 #define MIN_POOL_COMMIT		(4)
42 
43 /*
44  * Local function declarations
45  */
46 static void nfs_redirty_request(struct nfs_page *req);
47 static const struct rpc_call_ops nfs_commit_ops;
48 static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
49 static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
50 static const struct nfs_rw_ops nfs_rw_write_ops;
51 static void nfs_clear_request_commit(struct nfs_page *req);
52 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
53 				      struct inode *inode);
54 static struct nfs_page *
55 nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
56 						struct page *page);
57 
58 static struct kmem_cache *nfs_wdata_cachep;
59 static mempool_t *nfs_wdata_mempool;
60 static struct kmem_cache *nfs_cdata_cachep;
61 static mempool_t *nfs_commit_mempool;
62 
63 struct nfs_commit_data *nfs_commitdata_alloc(void)
64 {
65 	struct nfs_commit_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
66 
67 	if (p) {
68 		memset(p, 0, sizeof(*p));
69 		INIT_LIST_HEAD(&p->pages);
70 	}
71 	return p;
72 }
73 EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
74 
75 void nfs_commit_free(struct nfs_commit_data *p)
76 {
77 	mempool_free(p, nfs_commit_mempool);
78 }
79 EXPORT_SYMBOL_GPL(nfs_commit_free);
80 
81 static struct nfs_pgio_header *nfs_writehdr_alloc(void)
82 {
83 	struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
84 
85 	if (p)
86 		memset(p, 0, sizeof(*p));
87 	return p;
88 }
89 
90 static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
91 {
92 	mempool_free(hdr, nfs_wdata_mempool);
93 }
94 
95 static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
96 {
97 	ctx->error = error;
98 	smp_wmb();
99 	set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
100 }
101 
102 /*
103  * nfs_page_find_head_request_locked - find head request associated with @page
104  *
105  * must be called while holding the inode lock.
106  *
107  * returns matching head request with reference held, or NULL if not found.
108  */
109 static struct nfs_page *
110 nfs_page_find_head_request_locked(struct nfs_inode *nfsi, struct page *page)
111 {
112 	struct nfs_page *req = NULL;
113 
114 	if (PagePrivate(page))
115 		req = (struct nfs_page *)page_private(page);
116 	else if (unlikely(PageSwapCache(page)))
117 		req = nfs_page_search_commits_for_head_request_locked(nfsi,
118 			page);
119 
120 	if (req) {
121 		WARN_ON_ONCE(req->wb_head != req);
122 		kref_get(&req->wb_kref);
123 	}
124 
125 	return req;
126 }
127 
128 /*
129  * nfs_page_find_head_request - find head request associated with @page
130  *
131  * returns matching head request with reference held, or NULL if not found.
132  */
133 static struct nfs_page *nfs_page_find_head_request(struct page *page)
134 {
135 	struct inode *inode = page_file_mapping(page)->host;
136 	struct nfs_page *req = NULL;
137 
138 	spin_lock(&inode->i_lock);
139 	req = nfs_page_find_head_request_locked(NFS_I(inode), page);
140 	spin_unlock(&inode->i_lock);
141 	return req;
142 }
143 
144 /* Adjust the file length if we're writing beyond the end */
145 static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
146 {
147 	struct inode *inode = page_file_mapping(page)->host;
148 	loff_t end, i_size;
149 	pgoff_t end_index;
150 
151 	spin_lock(&inode->i_lock);
152 	i_size = i_size_read(inode);
153 	end_index = (i_size - 1) >> PAGE_SHIFT;
154 	if (i_size > 0 && page_index(page) < end_index)
155 		goto out;
156 	end = page_file_offset(page) + ((loff_t)offset+count);
157 	if (i_size >= end)
158 		goto out;
159 	i_size_write(inode, end);
160 	nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
161 out:
162 	spin_unlock(&inode->i_lock);
163 }
164 
165 /* A writeback failed: mark the page as bad, and invalidate the page cache */
166 static void nfs_set_pageerror(struct page *page)
167 {
168 	nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page));
169 }
170 
171 /*
172  * nfs_page_group_search_locked
173  * @head - head request of page group
174  * @page_offset - offset into page
175  *
176  * Search page group with head @head to find a request that contains the
177  * page offset @page_offset.
178  *
179  * Returns a pointer to the first matching nfs request, or NULL if no
180  * match is found.
181  *
182  * Must be called with the page group lock held
183  */
184 static struct nfs_page *
185 nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
186 {
187 	struct nfs_page *req;
188 
189 	WARN_ON_ONCE(head != head->wb_head);
190 	WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_head->wb_flags));
191 
192 	req = head;
193 	do {
194 		if (page_offset >= req->wb_pgbase &&
195 		    page_offset < (req->wb_pgbase + req->wb_bytes))
196 			return req;
197 
198 		req = req->wb_this_page;
199 	} while (req != head);
200 
201 	return NULL;
202 }
203 
204 /*
205  * nfs_page_group_covers_page
206  * @head - head request of page group
207  *
208  * Return true if the page group with head @head covers the whole page,
209  * returns false otherwise
210  */
211 static bool nfs_page_group_covers_page(struct nfs_page *req)
212 {
213 	struct nfs_page *tmp;
214 	unsigned int pos = 0;
215 	unsigned int len = nfs_page_length(req->wb_page);
216 
217 	nfs_page_group_lock(req, false);
218 
219 	do {
220 		tmp = nfs_page_group_search_locked(req->wb_head, pos);
221 		if (tmp) {
222 			/* no way this should happen */
223 			WARN_ON_ONCE(tmp->wb_pgbase != pos);
224 			pos += tmp->wb_bytes - (pos - tmp->wb_pgbase);
225 		}
226 	} while (tmp && pos < len);
227 
228 	nfs_page_group_unlock(req);
229 	WARN_ON_ONCE(pos > len);
230 	return pos == len;
231 }
232 
233 /* We can set the PG_uptodate flag if we see that a write request
234  * covers the full page.
235  */
236 static void nfs_mark_uptodate(struct nfs_page *req)
237 {
238 	if (PageUptodate(req->wb_page))
239 		return;
240 	if (!nfs_page_group_covers_page(req))
241 		return;
242 	SetPageUptodate(req->wb_page);
243 }
244 
245 static int wb_priority(struct writeback_control *wbc)
246 {
247 	int ret = 0;
248 
249 	if (wbc->sync_mode == WB_SYNC_ALL)
250 		ret = FLUSH_COND_STABLE;
251 	return ret;
252 }
253 
254 /*
255  * NFS congestion control
256  */
257 
258 int nfs_congestion_kb;
259 
260 #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10))
261 #define NFS_CONGESTION_OFF_THRESH	\
262 	(NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
263 
264 static void nfs_set_page_writeback(struct page *page)
265 {
266 	struct inode *inode = page_file_mapping(page)->host;
267 	struct nfs_server *nfss = NFS_SERVER(inode);
268 	int ret = test_set_page_writeback(page);
269 
270 	WARN_ON_ONCE(ret != 0);
271 
272 	if (atomic_long_inc_return(&nfss->writeback) >
273 			NFS_CONGESTION_ON_THRESH)
274 		set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
275 }
276 
277 static void nfs_end_page_writeback(struct nfs_page *req)
278 {
279 	struct inode *inode = page_file_mapping(req->wb_page)->host;
280 	struct nfs_server *nfss = NFS_SERVER(inode);
281 
282 	if (!nfs_page_group_sync_on_bit(req, PG_WB_END))
283 		return;
284 
285 	end_page_writeback(req->wb_page);
286 	if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
287 		clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
288 }
289 
290 
291 /* nfs_page_group_clear_bits
292  *   @req - an nfs request
293  * clears all page group related bits from @req
294  */
295 static void
296 nfs_page_group_clear_bits(struct nfs_page *req)
297 {
298 	clear_bit(PG_TEARDOWN, &req->wb_flags);
299 	clear_bit(PG_UNLOCKPAGE, &req->wb_flags);
300 	clear_bit(PG_UPTODATE, &req->wb_flags);
301 	clear_bit(PG_WB_END, &req->wb_flags);
302 	clear_bit(PG_REMOVE, &req->wb_flags);
303 }
304 
305 
306 /*
307  * nfs_unroll_locks_and_wait -  unlock all newly locked reqs and wait on @req
308  *
309  * this is a helper function for nfs_lock_and_join_requests
310  *
311  * @inode - inode associated with request page group, must be holding inode lock
312  * @head  - head request of page group, must be holding head lock
313  * @req   - request that couldn't lock and needs to wait on the req bit lock
314  * @nonblock - if true, don't actually wait
315  *
316  * NOTE: this must be called holding page_group bit lock and inode spin lock
317  *       and BOTH will be released before returning.
318  *
319  * returns 0 on success, < 0 on error.
320  */
321 static int
322 nfs_unroll_locks_and_wait(struct inode *inode, struct nfs_page *head,
323 			  struct nfs_page *req, bool nonblock)
324 	__releases(&inode->i_lock)
325 {
326 	struct nfs_page *tmp;
327 	int ret;
328 
329 	/* relinquish all the locks successfully grabbed this run */
330 	for (tmp = head ; tmp != req; tmp = tmp->wb_this_page)
331 		nfs_unlock_request(tmp);
332 
333 	WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
334 
335 	/* grab a ref on the request that will be waited on */
336 	kref_get(&req->wb_kref);
337 
338 	nfs_page_group_unlock(head);
339 	spin_unlock(&inode->i_lock);
340 
341 	/* release ref from nfs_page_find_head_request_locked */
342 	nfs_release_request(head);
343 
344 	if (!nonblock)
345 		ret = nfs_wait_on_request(req);
346 	else
347 		ret = -EAGAIN;
348 	nfs_release_request(req);
349 
350 	return ret;
351 }
352 
353 /*
354  * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
355  *
356  * @destroy_list - request list (using wb_this_page) terminated by @old_head
357  * @old_head - the old head of the list
358  *
359  * All subrequests must be locked and removed from all lists, so at this point
360  * they are only "active" in this function, and possibly in nfs_wait_on_request
361  * with a reference held by some other context.
362  */
363 static void
364 nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
365 				 struct nfs_page *old_head)
366 {
367 	while (destroy_list) {
368 		struct nfs_page *subreq = destroy_list;
369 
370 		destroy_list = (subreq->wb_this_page == old_head) ?
371 				   NULL : subreq->wb_this_page;
372 
373 		WARN_ON_ONCE(old_head != subreq->wb_head);
374 
375 		/* make sure old group is not used */
376 		subreq->wb_head = subreq;
377 		subreq->wb_this_page = subreq;
378 
379 		/* subreq is now totally disconnected from page group or any
380 		 * write / commit lists. last chance to wake any waiters */
381 		nfs_unlock_request(subreq);
382 
383 		if (!test_bit(PG_TEARDOWN, &subreq->wb_flags)) {
384 			/* release ref on old head request */
385 			nfs_release_request(old_head);
386 
387 			nfs_page_group_clear_bits(subreq);
388 
389 			/* release the PG_INODE_REF reference */
390 			if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags))
391 				nfs_release_request(subreq);
392 			else
393 				WARN_ON_ONCE(1);
394 		} else {
395 			WARN_ON_ONCE(test_bit(PG_CLEAN, &subreq->wb_flags));
396 			/* zombie requests have already released the last
397 			 * reference and were waiting on the rest of the
398 			 * group to complete. Since it's no longer part of a
399 			 * group, simply free the request */
400 			nfs_page_group_clear_bits(subreq);
401 			nfs_free_request(subreq);
402 		}
403 	}
404 }
405 
406 /*
407  * nfs_lock_and_join_requests - join all subreqs to the head req and return
408  *                              a locked reference, cancelling any pending
409  *                              operations for this page.
410  *
411  * @page - the page used to lookup the "page group" of nfs_page structures
412  * @nonblock - if true, don't block waiting for request locks
413  *
414  * This function joins all sub requests to the head request by first
415  * locking all requests in the group, cancelling any pending operations
416  * and finally updating the head request to cover the whole range covered by
417  * the (former) group.  All subrequests are removed from any write or commit
418  * lists, unlinked from the group and destroyed.
419  *
420  * Returns a locked, referenced pointer to the head request - which after
421  * this call is guaranteed to be the only request associated with the page.
422  * Returns NULL if no requests are found for @page, or a ERR_PTR if an
423  * error was encountered.
424  */
425 static struct nfs_page *
426 nfs_lock_and_join_requests(struct page *page, bool nonblock)
427 {
428 	struct inode *inode = page_file_mapping(page)->host;
429 	struct nfs_page *head, *subreq;
430 	struct nfs_page *destroy_list = NULL;
431 	unsigned int total_bytes;
432 	int ret;
433 
434 try_again:
435 	total_bytes = 0;
436 
437 	WARN_ON_ONCE(destroy_list);
438 
439 	spin_lock(&inode->i_lock);
440 
441 	/*
442 	 * A reference is taken only on the head request which acts as a
443 	 * reference to the whole page group - the group will not be destroyed
444 	 * until the head reference is released.
445 	 */
446 	head = nfs_page_find_head_request_locked(NFS_I(inode), page);
447 
448 	if (!head) {
449 		spin_unlock(&inode->i_lock);
450 		return NULL;
451 	}
452 
453 	/* holding inode lock, so always make a non-blocking call to try the
454 	 * page group lock */
455 	ret = nfs_page_group_lock(head, true);
456 	if (ret < 0) {
457 		spin_unlock(&inode->i_lock);
458 
459 		if (!nonblock && ret == -EAGAIN) {
460 			nfs_page_group_lock_wait(head);
461 			nfs_release_request(head);
462 			goto try_again;
463 		}
464 
465 		nfs_release_request(head);
466 		return ERR_PTR(ret);
467 	}
468 
469 	/* lock each request in the page group */
470 	subreq = head;
471 	do {
472 		/*
473 		 * Subrequests are always contiguous, non overlapping
474 		 * and in order - but may be repeated (mirrored writes).
475 		 */
476 		if (subreq->wb_offset == (head->wb_offset + total_bytes)) {
477 			/* keep track of how many bytes this group covers */
478 			total_bytes += subreq->wb_bytes;
479 		} else if (WARN_ON_ONCE(subreq->wb_offset < head->wb_offset ||
480 			    ((subreq->wb_offset + subreq->wb_bytes) >
481 			     (head->wb_offset + total_bytes)))) {
482 			nfs_page_group_unlock(head);
483 			spin_unlock(&inode->i_lock);
484 			return ERR_PTR(-EIO);
485 		}
486 
487 		if (!nfs_lock_request(subreq)) {
488 			/* releases page group bit lock and
489 			 * inode spin lock and all references */
490 			ret = nfs_unroll_locks_and_wait(inode, head,
491 				subreq, nonblock);
492 
493 			if (ret == 0)
494 				goto try_again;
495 
496 			return ERR_PTR(ret);
497 		}
498 
499 		subreq = subreq->wb_this_page;
500 	} while (subreq != head);
501 
502 	/* Now that all requests are locked, make sure they aren't on any list.
503 	 * Commit list removal accounting is done after locks are dropped */
504 	subreq = head;
505 	do {
506 		nfs_clear_request_commit(subreq);
507 		subreq = subreq->wb_this_page;
508 	} while (subreq != head);
509 
510 	/* unlink subrequests from head, destroy them later */
511 	if (head->wb_this_page != head) {
512 		/* destroy list will be terminated by head */
513 		destroy_list = head->wb_this_page;
514 		head->wb_this_page = head;
515 
516 		/* change head request to cover whole range that
517 		 * the former page group covered */
518 		head->wb_bytes = total_bytes;
519 	}
520 
521 	/*
522 	 * prepare head request to be added to new pgio descriptor
523 	 */
524 	nfs_page_group_clear_bits(head);
525 
526 	/*
527 	 * some part of the group was still on the inode list - otherwise
528 	 * the group wouldn't be involved in async write.
529 	 * grab a reference for the head request, iff it needs one.
530 	 */
531 	if (!test_and_set_bit(PG_INODE_REF, &head->wb_flags))
532 		kref_get(&head->wb_kref);
533 
534 	nfs_page_group_unlock(head);
535 
536 	/* drop lock to clean uprequests on destroy list */
537 	spin_unlock(&inode->i_lock);
538 
539 	nfs_destroy_unlinked_subrequests(destroy_list, head);
540 
541 	/* still holds ref on head from nfs_page_find_head_request_locked
542 	 * and still has lock on head from lock loop */
543 	return head;
544 }
545 
546 static void nfs_write_error_remove_page(struct nfs_page *req)
547 {
548 	nfs_unlock_request(req);
549 	nfs_end_page_writeback(req);
550 	nfs_release_request(req);
551 	generic_error_remove_page(page_file_mapping(req->wb_page),
552 				  req->wb_page);
553 }
554 
555 /*
556  * Find an associated nfs write request, and prepare to flush it out
557  * May return an error if the user signalled nfs_wait_on_request().
558  */
559 static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
560 				struct page *page, bool nonblock,
561 				bool launder)
562 {
563 	struct nfs_page *req;
564 	int ret = 0;
565 
566 	req = nfs_lock_and_join_requests(page, nonblock);
567 	if (!req)
568 		goto out;
569 	ret = PTR_ERR(req);
570 	if (IS_ERR(req))
571 		goto out;
572 
573 	nfs_set_page_writeback(page);
574 	WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
575 
576 	ret = 0;
577 	if (!nfs_pageio_add_request(pgio, req)) {
578 		ret = pgio->pg_error;
579 		/*
580 		 * Remove the problematic req upon fatal errors
581 		 * in launder case, while other dirty pages can
582 		 * still be around until they get flushed.
583 		 */
584 		if (nfs_error_is_fatal(ret)) {
585 			nfs_context_set_write_error(req->wb_context, ret);
586 			if (launder) {
587 				nfs_write_error_remove_page(req);
588 				goto out;
589 			}
590 		}
591 		nfs_redirty_request(req);
592 		ret = -EAGAIN;
593 	} else
594 		nfs_add_stats(page_file_mapping(page)->host,
595 				NFSIOS_WRITEPAGES, 1);
596 out:
597 	return ret;
598 }
599 
600 static int nfs_do_writepage(struct page *page, struct writeback_control *wbc,
601 			    struct nfs_pageio_descriptor *pgio, bool launder)
602 {
603 	int ret;
604 
605 	nfs_pageio_cond_complete(pgio, page_index(page));
606 	ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE,
607 				   launder);
608 	if (ret == -EAGAIN) {
609 		redirty_page_for_writepage(wbc, page);
610 		ret = 0;
611 	}
612 	return ret;
613 }
614 
615 /*
616  * Write an mmapped page to the server.
617  */
618 static int nfs_writepage_locked(struct page *page,
619 				struct writeback_control *wbc,
620 				bool launder)
621 {
622 	struct nfs_pageio_descriptor pgio;
623 	struct inode *inode = page_file_mapping(page)->host;
624 	int err;
625 
626 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
627 	nfs_pageio_init_write(&pgio, inode, 0,
628 				false, &nfs_async_write_completion_ops);
629 	err = nfs_do_writepage(page, wbc, &pgio, launder);
630 	nfs_pageio_complete(&pgio);
631 	if (err < 0)
632 		return err;
633 	if (pgio.pg_error < 0)
634 		return pgio.pg_error;
635 	return 0;
636 }
637 
638 int nfs_writepage(struct page *page, struct writeback_control *wbc)
639 {
640 	int ret;
641 
642 	ret = nfs_writepage_locked(page, wbc, false);
643 	unlock_page(page);
644 	return ret;
645 }
646 
647 static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
648 {
649 	int ret;
650 
651 	ret = nfs_do_writepage(page, wbc, data, false);
652 	unlock_page(page);
653 	return ret;
654 }
655 
656 int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
657 {
658 	struct inode *inode = mapping->host;
659 	struct nfs_pageio_descriptor pgio;
660 	int err;
661 
662 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
663 
664 	nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
665 				&nfs_async_write_completion_ops);
666 	err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
667 	nfs_pageio_complete(&pgio);
668 
669 	if (err < 0)
670 		goto out_err;
671 	err = pgio.pg_error;
672 	if (err < 0)
673 		goto out_err;
674 	return 0;
675 out_err:
676 	return err;
677 }
678 
679 /*
680  * Insert a write request into an inode
681  */
682 static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
683 {
684 	struct nfs_inode *nfsi = NFS_I(inode);
685 
686 	WARN_ON_ONCE(req->wb_this_page != req);
687 
688 	/* Lock the request! */
689 	nfs_lock_request(req);
690 
691 	spin_lock(&inode->i_lock);
692 	if (!nfsi->nrequests &&
693 	    NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
694 		inode->i_version++;
695 	/*
696 	 * Swap-space should not get truncated. Hence no need to plug the race
697 	 * with invalidate/truncate.
698 	 */
699 	if (likely(!PageSwapCache(req->wb_page))) {
700 		set_bit(PG_MAPPED, &req->wb_flags);
701 		SetPagePrivate(req->wb_page);
702 		set_page_private(req->wb_page, (unsigned long)req);
703 	}
704 	nfsi->nrequests++;
705 	/* this a head request for a page group - mark it as having an
706 	 * extra reference so sub groups can follow suit.
707 	 * This flag also informs pgio layer when to bump nrequests when
708 	 * adding subrequests. */
709 	WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
710 	kref_get(&req->wb_kref);
711 	spin_unlock(&inode->i_lock);
712 }
713 
714 /*
715  * Remove a write request from an inode
716  */
717 static void nfs_inode_remove_request(struct nfs_page *req)
718 {
719 	struct inode *inode = d_inode(req->wb_context->dentry);
720 	struct nfs_inode *nfsi = NFS_I(inode);
721 	struct nfs_page *head;
722 
723 	if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
724 		head = req->wb_head;
725 
726 		spin_lock(&inode->i_lock);
727 		if (likely(head->wb_page && !PageSwapCache(head->wb_page))) {
728 			set_page_private(head->wb_page, 0);
729 			ClearPagePrivate(head->wb_page);
730 			clear_bit(PG_MAPPED, &head->wb_flags);
731 		}
732 		nfsi->nrequests--;
733 		spin_unlock(&inode->i_lock);
734 	} else {
735 		spin_lock(&inode->i_lock);
736 		nfsi->nrequests--;
737 		spin_unlock(&inode->i_lock);
738 	}
739 
740 	if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
741 		nfs_release_request(req);
742 }
743 
744 static void
745 nfs_mark_request_dirty(struct nfs_page *req)
746 {
747 	if (req->wb_page)
748 		__set_page_dirty_nobuffers(req->wb_page);
749 }
750 
751 /*
752  * nfs_page_search_commits_for_head_request_locked
753  *
754  * Search through commit lists on @inode for the head request for @page.
755  * Must be called while holding the inode (which is cinfo) lock.
756  *
757  * Returns the head request if found, or NULL if not found.
758  */
759 static struct nfs_page *
760 nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
761 						struct page *page)
762 {
763 	struct nfs_page *freq, *t;
764 	struct nfs_commit_info cinfo;
765 	struct inode *inode = &nfsi->vfs_inode;
766 
767 	nfs_init_cinfo_from_inode(&cinfo, inode);
768 
769 	/* search through pnfs commit lists */
770 	freq = pnfs_search_commit_reqs(inode, &cinfo, page);
771 	if (freq)
772 		return freq->wb_head;
773 
774 	/* Linearly search the commit list for the correct request */
775 	list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
776 		if (freq->wb_page == page)
777 			return freq->wb_head;
778 	}
779 
780 	return NULL;
781 }
782 
783 /**
784  * nfs_request_add_commit_list_locked - add request to a commit list
785  * @req: pointer to a struct nfs_page
786  * @dst: commit list head
787  * @cinfo: holds list lock and accounting info
788  *
789  * This sets the PG_CLEAN bit, updates the cinfo count of
790  * number of outstanding requests requiring a commit as well as
791  * the MM page stats.
792  *
793  * The caller must hold cinfo->inode->i_lock, and the nfs_page lock.
794  */
795 void
796 nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
797 			    struct nfs_commit_info *cinfo)
798 {
799 	set_bit(PG_CLEAN, &req->wb_flags);
800 	nfs_list_add_request(req, dst);
801 	cinfo->mds->ncommit++;
802 }
803 EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
804 
805 /**
806  * nfs_request_add_commit_list - add request to a commit list
807  * @req: pointer to a struct nfs_page
808  * @dst: commit list head
809  * @cinfo: holds list lock and accounting info
810  *
811  * This sets the PG_CLEAN bit, updates the cinfo count of
812  * number of outstanding requests requiring a commit as well as
813  * the MM page stats.
814  *
815  * The caller must _not_ hold the cinfo->lock, but must be
816  * holding the nfs_page lock.
817  */
818 void
819 nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
820 {
821 	spin_lock(&cinfo->inode->i_lock);
822 	nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
823 	spin_unlock(&cinfo->inode->i_lock);
824 	if (req->wb_page)
825 		nfs_mark_page_unstable(req->wb_page, cinfo);
826 }
827 EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
828 
829 /**
830  * nfs_request_remove_commit_list - Remove request from a commit list
831  * @req: pointer to a nfs_page
832  * @cinfo: holds list lock and accounting info
833  *
834  * This clears the PG_CLEAN bit, and updates the cinfo's count of
835  * number of outstanding requests requiring a commit
836  * It does not update the MM page stats.
837  *
838  * The caller _must_ hold the cinfo->lock and the nfs_page lock.
839  */
840 void
841 nfs_request_remove_commit_list(struct nfs_page *req,
842 			       struct nfs_commit_info *cinfo)
843 {
844 	if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
845 		return;
846 	nfs_list_remove_request(req);
847 	cinfo->mds->ncommit--;
848 }
849 EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
850 
851 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
852 				      struct inode *inode)
853 {
854 	cinfo->inode = inode;
855 	cinfo->mds = &NFS_I(inode)->commit_info;
856 	cinfo->ds = pnfs_get_ds_info(inode);
857 	cinfo->dreq = NULL;
858 	cinfo->completion_ops = &nfs_commit_completion_ops;
859 }
860 
861 void nfs_init_cinfo(struct nfs_commit_info *cinfo,
862 		    struct inode *inode,
863 		    struct nfs_direct_req *dreq)
864 {
865 	if (dreq)
866 		nfs_init_cinfo_from_dreq(cinfo, dreq);
867 	else
868 		nfs_init_cinfo_from_inode(cinfo, inode);
869 }
870 EXPORT_SYMBOL_GPL(nfs_init_cinfo);
871 
872 /*
873  * Add a request to the inode's commit list.
874  */
875 void
876 nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
877 			struct nfs_commit_info *cinfo, u32 ds_commit_idx)
878 {
879 	if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
880 		return;
881 	nfs_request_add_commit_list(req, cinfo);
882 }
883 
884 static void
885 nfs_clear_page_commit(struct page *page)
886 {
887 	dec_node_page_state(page, NR_UNSTABLE_NFS);
888 	dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb,
889 		    WB_RECLAIMABLE);
890 }
891 
892 /* Called holding inode (/cinfo) lock */
893 static void
894 nfs_clear_request_commit(struct nfs_page *req)
895 {
896 	if (test_bit(PG_CLEAN, &req->wb_flags)) {
897 		struct inode *inode = d_inode(req->wb_context->dentry);
898 		struct nfs_commit_info cinfo;
899 
900 		nfs_init_cinfo_from_inode(&cinfo, inode);
901 		if (!pnfs_clear_request_commit(req, &cinfo)) {
902 			nfs_request_remove_commit_list(req, &cinfo);
903 		}
904 		nfs_clear_page_commit(req->wb_page);
905 	}
906 }
907 
908 int nfs_write_need_commit(struct nfs_pgio_header *hdr)
909 {
910 	if (hdr->verf.committed == NFS_DATA_SYNC)
911 		return hdr->lseg == NULL;
912 	return hdr->verf.committed != NFS_FILE_SYNC;
913 }
914 
915 static void nfs_write_completion(struct nfs_pgio_header *hdr)
916 {
917 	struct nfs_commit_info cinfo;
918 	unsigned long bytes = 0;
919 
920 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
921 		goto out;
922 	nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
923 	while (!list_empty(&hdr->pages)) {
924 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
925 
926 		bytes += req->wb_bytes;
927 		nfs_list_remove_request(req);
928 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
929 		    (hdr->good_bytes < bytes)) {
930 			nfs_set_pageerror(req->wb_page);
931 			nfs_context_set_write_error(req->wb_context, hdr->error);
932 			goto remove_req;
933 		}
934 		if (nfs_write_need_commit(hdr)) {
935 			memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
936 			nfs_mark_request_commit(req, hdr->lseg, &cinfo,
937 				hdr->pgio_mirror_idx);
938 			goto next;
939 		}
940 remove_req:
941 		nfs_inode_remove_request(req);
942 next:
943 		nfs_unlock_request(req);
944 		nfs_end_page_writeback(req);
945 		nfs_release_request(req);
946 	}
947 out:
948 	hdr->release(hdr);
949 }
950 
951 unsigned long
952 nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
953 {
954 	return cinfo->mds->ncommit;
955 }
956 
957 /* cinfo->inode->i_lock held by caller */
958 int
959 nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
960 		     struct nfs_commit_info *cinfo, int max)
961 {
962 	struct nfs_page *req, *tmp;
963 	int ret = 0;
964 
965 	list_for_each_entry_safe(req, tmp, src, wb_list) {
966 		if (!nfs_lock_request(req))
967 			continue;
968 		kref_get(&req->wb_kref);
969 		if (cond_resched_lock(&cinfo->inode->i_lock))
970 			list_safe_reset_next(req, tmp, wb_list);
971 		nfs_request_remove_commit_list(req, cinfo);
972 		nfs_list_add_request(req, dst);
973 		ret++;
974 		if ((ret == max) && !cinfo->dreq)
975 			break;
976 	}
977 	return ret;
978 }
979 
980 /*
981  * nfs_scan_commit - Scan an inode for commit requests
982  * @inode: NFS inode to scan
983  * @dst: mds destination list
984  * @cinfo: mds and ds lists of reqs ready to commit
985  *
986  * Moves requests from the inode's 'commit' request list.
987  * The requests are *not* checked to ensure that they form a contiguous set.
988  */
989 int
990 nfs_scan_commit(struct inode *inode, struct list_head *dst,
991 		struct nfs_commit_info *cinfo)
992 {
993 	int ret = 0;
994 
995 	spin_lock(&cinfo->inode->i_lock);
996 	if (cinfo->mds->ncommit > 0) {
997 		const int max = INT_MAX;
998 
999 		ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1000 					   cinfo, max);
1001 		ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
1002 	}
1003 	spin_unlock(&cinfo->inode->i_lock);
1004 	return ret;
1005 }
1006 
1007 /*
1008  * Search for an existing write request, and attempt to update
1009  * it to reflect a new dirty region on a given page.
1010  *
1011  * If the attempt fails, then the existing request is flushed out
1012  * to disk.
1013  */
1014 static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
1015 		struct page *page,
1016 		unsigned int offset,
1017 		unsigned int bytes)
1018 {
1019 	struct nfs_page *req;
1020 	unsigned int rqend;
1021 	unsigned int end;
1022 	int error;
1023 
1024 	if (!PagePrivate(page))
1025 		return NULL;
1026 
1027 	end = offset + bytes;
1028 	spin_lock(&inode->i_lock);
1029 
1030 	for (;;) {
1031 		req = nfs_page_find_head_request_locked(NFS_I(inode), page);
1032 		if (req == NULL)
1033 			goto out_unlock;
1034 
1035 		/* should be handled by nfs_flush_incompatible */
1036 		WARN_ON_ONCE(req->wb_head != req);
1037 		WARN_ON_ONCE(req->wb_this_page != req);
1038 
1039 		rqend = req->wb_offset + req->wb_bytes;
1040 		/*
1041 		 * Tell the caller to flush out the request if
1042 		 * the offsets are non-contiguous.
1043 		 * Note: nfs_flush_incompatible() will already
1044 		 * have flushed out requests having wrong owners.
1045 		 */
1046 		if (offset > rqend
1047 		    || end < req->wb_offset)
1048 			goto out_flushme;
1049 
1050 		if (nfs_lock_request(req))
1051 			break;
1052 
1053 		/* The request is locked, so wait and then retry */
1054 		spin_unlock(&inode->i_lock);
1055 		error = nfs_wait_on_request(req);
1056 		nfs_release_request(req);
1057 		if (error != 0)
1058 			goto out_err;
1059 		spin_lock(&inode->i_lock);
1060 	}
1061 
1062 	/* Okay, the request matches. Update the region */
1063 	if (offset < req->wb_offset) {
1064 		req->wb_offset = offset;
1065 		req->wb_pgbase = offset;
1066 	}
1067 	if (end > rqend)
1068 		req->wb_bytes = end - req->wb_offset;
1069 	else
1070 		req->wb_bytes = rqend - req->wb_offset;
1071 out_unlock:
1072 	if (req)
1073 		nfs_clear_request_commit(req);
1074 	spin_unlock(&inode->i_lock);
1075 	return req;
1076 out_flushme:
1077 	spin_unlock(&inode->i_lock);
1078 	nfs_release_request(req);
1079 	error = nfs_wb_page(inode, page);
1080 out_err:
1081 	return ERR_PTR(error);
1082 }
1083 
1084 /*
1085  * Try to update an existing write request, or create one if there is none.
1086  *
1087  * Note: Should always be called with the Page Lock held to prevent races
1088  * if we have to add a new request. Also assumes that the caller has
1089  * already called nfs_flush_incompatible() if necessary.
1090  */
1091 static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1092 		struct page *page, unsigned int offset, unsigned int bytes)
1093 {
1094 	struct inode *inode = page_file_mapping(page)->host;
1095 	struct nfs_page	*req;
1096 
1097 	req = nfs_try_to_update_request(inode, page, offset, bytes);
1098 	if (req != NULL)
1099 		goto out;
1100 	req = nfs_create_request(ctx, page, NULL, offset, bytes);
1101 	if (IS_ERR(req))
1102 		goto out;
1103 	nfs_inode_add_request(inode, req);
1104 out:
1105 	return req;
1106 }
1107 
1108 static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1109 		unsigned int offset, unsigned int count)
1110 {
1111 	struct nfs_page	*req;
1112 
1113 	req = nfs_setup_write_request(ctx, page, offset, count);
1114 	if (IS_ERR(req))
1115 		return PTR_ERR(req);
1116 	/* Update file length */
1117 	nfs_grow_file(page, offset, count);
1118 	nfs_mark_uptodate(req);
1119 	nfs_mark_request_dirty(req);
1120 	nfs_unlock_and_release_request(req);
1121 	return 0;
1122 }
1123 
1124 int nfs_flush_incompatible(struct file *file, struct page *page)
1125 {
1126 	struct nfs_open_context *ctx = nfs_file_open_context(file);
1127 	struct nfs_lock_context *l_ctx;
1128 	struct file_lock_context *flctx = file_inode(file)->i_flctx;
1129 	struct nfs_page	*req;
1130 	int do_flush, status;
1131 	/*
1132 	 * Look for a request corresponding to this page. If there
1133 	 * is one, and it belongs to another file, we flush it out
1134 	 * before we try to copy anything into the page. Do this
1135 	 * due to the lack of an ACCESS-type call in NFSv2.
1136 	 * Also do the same if we find a request from an existing
1137 	 * dropped page.
1138 	 */
1139 	do {
1140 		req = nfs_page_find_head_request(page);
1141 		if (req == NULL)
1142 			return 0;
1143 		l_ctx = req->wb_lock_context;
1144 		do_flush = req->wb_page != page ||
1145 			!nfs_match_open_context(req->wb_context, ctx);
1146 		/* for now, flush if more than 1 request in page_group */
1147 		do_flush |= req->wb_this_page != req;
1148 		if (l_ctx && flctx &&
1149 		    !(list_empty_careful(&flctx->flc_posix) &&
1150 		      list_empty_careful(&flctx->flc_flock))) {
1151 			do_flush |= l_ctx->lockowner != current->files;
1152 		}
1153 		nfs_release_request(req);
1154 		if (!do_flush)
1155 			return 0;
1156 		status = nfs_wb_page(page_file_mapping(page)->host, page);
1157 	} while (status == 0);
1158 	return status;
1159 }
1160 
1161 /*
1162  * Avoid buffered writes when a open context credential's key would
1163  * expire soon.
1164  *
1165  * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1166  *
1167  * Return 0 and set a credential flag which triggers the inode to flush
1168  * and performs  NFS_FILE_SYNC writes if the key will expired within
1169  * RPC_KEY_EXPIRE_TIMEO.
1170  */
1171 int
1172 nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1173 {
1174 	struct nfs_open_context *ctx = nfs_file_open_context(filp);
1175 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1176 
1177 	return rpcauth_key_timeout_notify(auth, ctx->cred);
1178 }
1179 
1180 /*
1181  * Test if the open context credential key is marked to expire soon.
1182  */
1183 bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
1184 {
1185 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1186 
1187 	return rpcauth_cred_key_to_expire(auth, ctx->cred);
1188 }
1189 
1190 /*
1191  * If the page cache is marked as unsafe or invalid, then we can't rely on
1192  * the PageUptodate() flag. In this case, we will need to turn off
1193  * write optimisations that depend on the page contents being correct.
1194  */
1195 static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
1196 {
1197 	struct nfs_inode *nfsi = NFS_I(inode);
1198 
1199 	if (nfs_have_delegated_attributes(inode))
1200 		goto out;
1201 	if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1202 		return false;
1203 	smp_rmb();
1204 	if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
1205 		return false;
1206 out:
1207 	if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1208 		return false;
1209 	return PageUptodate(page) != 0;
1210 }
1211 
1212 static bool
1213 is_whole_file_wrlock(struct file_lock *fl)
1214 {
1215 	return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
1216 			fl->fl_type == F_WRLCK;
1217 }
1218 
1219 /* If we know the page is up to date, and we're not using byte range locks (or
1220  * if we have the whole file locked for writing), it may be more efficient to
1221  * extend the write to cover the entire page in order to avoid fragmentation
1222  * inefficiencies.
1223  *
1224  * If the file is opened for synchronous writes then we can just skip the rest
1225  * of the checks.
1226  */
1227 static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1228 {
1229 	int ret;
1230 	struct file_lock_context *flctx = inode->i_flctx;
1231 	struct file_lock *fl;
1232 
1233 	if (file->f_flags & O_DSYNC)
1234 		return 0;
1235 	if (!nfs_write_pageuptodate(page, inode))
1236 		return 0;
1237 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1238 		return 1;
1239 	if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1240 		       list_empty_careful(&flctx->flc_posix)))
1241 		return 1;
1242 
1243 	/* Check to see if there are whole file write locks */
1244 	ret = 0;
1245 	spin_lock(&flctx->flc_lock);
1246 	if (!list_empty(&flctx->flc_posix)) {
1247 		fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1248 					fl_list);
1249 		if (is_whole_file_wrlock(fl))
1250 			ret = 1;
1251 	} else if (!list_empty(&flctx->flc_flock)) {
1252 		fl = list_first_entry(&flctx->flc_flock, struct file_lock,
1253 					fl_list);
1254 		if (fl->fl_type == F_WRLCK)
1255 			ret = 1;
1256 	}
1257 	spin_unlock(&flctx->flc_lock);
1258 	return ret;
1259 }
1260 
1261 /*
1262  * Update and possibly write a cached page of an NFS file.
1263  *
1264  * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
1265  * things with a page scheduled for an RPC call (e.g. invalidate it).
1266  */
1267 int nfs_updatepage(struct file *file, struct page *page,
1268 		unsigned int offset, unsigned int count)
1269 {
1270 	struct nfs_open_context *ctx = nfs_file_open_context(file);
1271 	struct inode	*inode = page_file_mapping(page)->host;
1272 	int		status = 0;
1273 
1274 	nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
1275 
1276 	dprintk("NFS:       nfs_updatepage(%pD2 %d@%lld)\n",
1277 		file, count, (long long)(page_file_offset(page) + offset));
1278 
1279 	if (!count)
1280 		goto out;
1281 
1282 	if (nfs_can_extend_write(file, page, inode)) {
1283 		count = max(count + offset, nfs_page_length(page));
1284 		offset = 0;
1285 	}
1286 
1287 	status = nfs_writepage_setup(ctx, page, offset, count);
1288 	if (status < 0)
1289 		nfs_set_pageerror(page);
1290 	else
1291 		__set_page_dirty_nobuffers(page);
1292 out:
1293 	dprintk("NFS:       nfs_updatepage returns %d (isize %lld)\n",
1294 			status, (long long)i_size_read(inode));
1295 	return status;
1296 }
1297 
1298 static int flush_task_priority(int how)
1299 {
1300 	switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
1301 		case FLUSH_HIGHPRI:
1302 			return RPC_PRIORITY_HIGH;
1303 		case FLUSH_LOWPRI:
1304 			return RPC_PRIORITY_LOW;
1305 	}
1306 	return RPC_PRIORITY_NORMAL;
1307 }
1308 
1309 static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1310 			       struct rpc_message *msg,
1311 			       const struct nfs_rpc_ops *rpc_ops,
1312 			       struct rpc_task_setup *task_setup_data, int how)
1313 {
1314 	int priority = flush_task_priority(how);
1315 
1316 	task_setup_data->priority = priority;
1317 	rpc_ops->write_setup(hdr, msg);
1318 
1319 	nfs4_state_protect_write(NFS_SERVER(hdr->inode)->nfs_client,
1320 				 &task_setup_data->rpc_client, msg, hdr);
1321 }
1322 
1323 /* If a nfs_flush_* function fails, it should remove reqs from @head and
1324  * call this on each, which will prepare them to be retried on next
1325  * writeback using standard nfs.
1326  */
1327 static void nfs_redirty_request(struct nfs_page *req)
1328 {
1329 	nfs_mark_request_dirty(req);
1330 	set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1331 	nfs_unlock_request(req);
1332 	nfs_end_page_writeback(req);
1333 	nfs_release_request(req);
1334 }
1335 
1336 static void nfs_async_write_error(struct list_head *head)
1337 {
1338 	struct nfs_page	*req;
1339 
1340 	while (!list_empty(head)) {
1341 		req = nfs_list_entry(head->next);
1342 		nfs_list_remove_request(req);
1343 		nfs_redirty_request(req);
1344 	}
1345 }
1346 
1347 static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1348 {
1349 	nfs_async_write_error(&hdr->pages);
1350 }
1351 
1352 static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1353 	.error_cleanup = nfs_async_write_error,
1354 	.completion = nfs_write_completion,
1355 	.reschedule_io = nfs_async_write_reschedule_io,
1356 };
1357 
1358 void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1359 			       struct inode *inode, int ioflags, bool force_mds,
1360 			       const struct nfs_pgio_completion_ops *compl_ops)
1361 {
1362 	struct nfs_server *server = NFS_SERVER(inode);
1363 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1364 
1365 #ifdef CONFIG_NFS_V4_1
1366 	if (server->pnfs_curr_ld && !force_mds)
1367 		pg_ops = server->pnfs_curr_ld->pg_write_ops;
1368 #endif
1369 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
1370 			server->wsize, ioflags);
1371 }
1372 EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
1373 
1374 void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1375 {
1376 	struct nfs_pgio_mirror *mirror;
1377 
1378 	if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
1379 		pgio->pg_ops->pg_cleanup(pgio);
1380 
1381 	pgio->pg_ops = &nfs_pgio_rw_ops;
1382 
1383 	nfs_pageio_stop_mirroring(pgio);
1384 
1385 	mirror = &pgio->pg_mirrors[0];
1386 	mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1387 }
1388 EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1389 
1390 
1391 void nfs_commit_prepare(struct rpc_task *task, void *calldata)
1392 {
1393 	struct nfs_commit_data *data = calldata;
1394 
1395 	NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
1396 }
1397 
1398 /*
1399  * Special version of should_remove_suid() that ignores capabilities.
1400  */
1401 static int nfs_should_remove_suid(const struct inode *inode)
1402 {
1403 	umode_t mode = inode->i_mode;
1404 	int kill = 0;
1405 
1406 	/* suid always must be killed */
1407 	if (unlikely(mode & S_ISUID))
1408 		kill = ATTR_KILL_SUID;
1409 
1410 	/*
1411 	 * sgid without any exec bits is just a mandatory locking mark; leave
1412 	 * it alone.  If some exec bits are set, it's a real sgid; kill it.
1413 	 */
1414 	if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1415 		kill |= ATTR_KILL_SGID;
1416 
1417 	if (unlikely(kill && S_ISREG(mode)))
1418 		return kill;
1419 
1420 	return 0;
1421 }
1422 
1423 static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1424 		struct nfs_fattr *fattr)
1425 {
1426 	struct nfs_pgio_args *argp = &hdr->args;
1427 	struct nfs_pgio_res *resp = &hdr->res;
1428 	u64 size = argp->offset + resp->count;
1429 
1430 	if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
1431 		fattr->size = size;
1432 	if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
1433 		fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
1434 		return;
1435 	}
1436 	if (size != fattr->size)
1437 		return;
1438 	/* Set attribute barrier */
1439 	nfs_fattr_set_barrier(fattr);
1440 	/* ...and update size */
1441 	fattr->valid |= NFS_ATTR_FATTR_SIZE;
1442 }
1443 
1444 void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1445 {
1446 	struct nfs_fattr *fattr = &hdr->fattr;
1447 	struct inode *inode = hdr->inode;
1448 
1449 	spin_lock(&inode->i_lock);
1450 	nfs_writeback_check_extend(hdr, fattr);
1451 	nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1452 	spin_unlock(&inode->i_lock);
1453 }
1454 EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1455 
1456 /*
1457  * This function is called when the WRITE call is complete.
1458  */
1459 static int nfs_writeback_done(struct rpc_task *task,
1460 			      struct nfs_pgio_header *hdr,
1461 			      struct inode *inode)
1462 {
1463 	int status;
1464 
1465 	/*
1466 	 * ->write_done will attempt to use post-op attributes to detect
1467 	 * conflicting writes by other clients.  A strict interpretation
1468 	 * of close-to-open would allow us to continue caching even if
1469 	 * another writer had changed the file, but some applications
1470 	 * depend on tighter cache coherency when writing.
1471 	 */
1472 	status = NFS_PROTO(inode)->write_done(task, hdr);
1473 	if (status != 0)
1474 		return status;
1475 	nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
1476 
1477 	if (hdr->res.verf->committed < hdr->args.stable &&
1478 	    task->tk_status >= 0) {
1479 		/* We tried a write call, but the server did not
1480 		 * commit data to stable storage even though we
1481 		 * requested it.
1482 		 * Note: There is a known bug in Tru64 < 5.0 in which
1483 		 *	 the server reports NFS_DATA_SYNC, but performs
1484 		 *	 NFS_FILE_SYNC. We therefore implement this checking
1485 		 *	 as a dprintk() in order to avoid filling syslog.
1486 		 */
1487 		static unsigned long    complain;
1488 
1489 		/* Note this will print the MDS for a DS write */
1490 		if (time_before(complain, jiffies)) {
1491 			dprintk("NFS:       faulty NFS server %s:"
1492 				" (committed = %d) != (stable = %d)\n",
1493 				NFS_SERVER(inode)->nfs_client->cl_hostname,
1494 				hdr->res.verf->committed, hdr->args.stable);
1495 			complain = jiffies + 300 * HZ;
1496 		}
1497 	}
1498 
1499 	/* Deal with the suid/sgid bit corner case */
1500 	if (nfs_should_remove_suid(inode))
1501 		nfs_mark_for_revalidate(inode);
1502 	return 0;
1503 }
1504 
1505 /*
1506  * This function is called when the WRITE call is complete.
1507  */
1508 static void nfs_writeback_result(struct rpc_task *task,
1509 				 struct nfs_pgio_header *hdr)
1510 {
1511 	struct nfs_pgio_args	*argp = &hdr->args;
1512 	struct nfs_pgio_res	*resp = &hdr->res;
1513 
1514 	if (resp->count < argp->count) {
1515 		static unsigned long    complain;
1516 
1517 		/* This a short write! */
1518 		nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
1519 
1520 		/* Has the server at least made some progress? */
1521 		if (resp->count == 0) {
1522 			if (time_before(complain, jiffies)) {
1523 				printk(KERN_WARNING
1524 				       "NFS: Server wrote zero bytes, expected %u.\n",
1525 				       argp->count);
1526 				complain = jiffies + 300 * HZ;
1527 			}
1528 			nfs_set_pgio_error(hdr, -EIO, argp->offset);
1529 			task->tk_status = -EIO;
1530 			return;
1531 		}
1532 
1533 		/* For non rpc-based layout drivers, retry-through-MDS */
1534 		if (!task->tk_ops) {
1535 			hdr->pnfs_error = -EAGAIN;
1536 			return;
1537 		}
1538 
1539 		/* Was this an NFSv2 write or an NFSv3 stable write? */
1540 		if (resp->verf->committed != NFS_UNSTABLE) {
1541 			/* Resend from where the server left off */
1542 			hdr->mds_offset += resp->count;
1543 			argp->offset += resp->count;
1544 			argp->pgbase += resp->count;
1545 			argp->count -= resp->count;
1546 		} else {
1547 			/* Resend as a stable write in order to avoid
1548 			 * headaches in the case of a server crash.
1549 			 */
1550 			argp->stable = NFS_FILE_SYNC;
1551 		}
1552 		rpc_restart_call_prepare(task);
1553 	}
1554 }
1555 
1556 static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
1557 {
1558 	return wait_on_atomic_t(&cinfo->rpcs_out,
1559 			nfs_wait_atomic_killable, TASK_KILLABLE);
1560 }
1561 
1562 static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1563 {
1564 	atomic_inc(&cinfo->rpcs_out);
1565 }
1566 
1567 static void nfs_commit_end(struct nfs_mds_commit_info *cinfo)
1568 {
1569 	if (atomic_dec_and_test(&cinfo->rpcs_out))
1570 		wake_up_atomic_t(&cinfo->rpcs_out);
1571 }
1572 
1573 void nfs_commitdata_release(struct nfs_commit_data *data)
1574 {
1575 	put_nfs_open_context(data->context);
1576 	nfs_commit_free(data);
1577 }
1578 EXPORT_SYMBOL_GPL(nfs_commitdata_release);
1579 
1580 int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1581 			const struct nfs_rpc_ops *nfs_ops,
1582 			const struct rpc_call_ops *call_ops,
1583 			int how, int flags)
1584 {
1585 	struct rpc_task *task;
1586 	int priority = flush_task_priority(how);
1587 	struct rpc_message msg = {
1588 		.rpc_argp = &data->args,
1589 		.rpc_resp = &data->res,
1590 		.rpc_cred = data->cred,
1591 	};
1592 	struct rpc_task_setup task_setup_data = {
1593 		.task = &data->task,
1594 		.rpc_client = clnt,
1595 		.rpc_message = &msg,
1596 		.callback_ops = call_ops,
1597 		.callback_data = data,
1598 		.workqueue = nfsiod_workqueue,
1599 		.flags = RPC_TASK_ASYNC | flags,
1600 		.priority = priority,
1601 	};
1602 	/* Set up the initial task struct.  */
1603 	nfs_ops->commit_setup(data, &msg);
1604 
1605 	dprintk("NFS: initiated commit call\n");
1606 
1607 	nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client,
1608 		NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg);
1609 
1610 	task = rpc_run_task(&task_setup_data);
1611 	if (IS_ERR(task))
1612 		return PTR_ERR(task);
1613 	if (how & FLUSH_SYNC)
1614 		rpc_wait_for_completion_task(task);
1615 	rpc_put_task(task);
1616 	return 0;
1617 }
1618 EXPORT_SYMBOL_GPL(nfs_initiate_commit);
1619 
1620 static loff_t nfs_get_lwb(struct list_head *head)
1621 {
1622 	loff_t lwb = 0;
1623 	struct nfs_page *req;
1624 
1625 	list_for_each_entry(req, head, wb_list)
1626 		if (lwb < (req_offset(req) + req->wb_bytes))
1627 			lwb = req_offset(req) + req->wb_bytes;
1628 
1629 	return lwb;
1630 }
1631 
1632 /*
1633  * Set up the argument/result storage required for the RPC call.
1634  */
1635 void nfs_init_commit(struct nfs_commit_data *data,
1636 		     struct list_head *head,
1637 		     struct pnfs_layout_segment *lseg,
1638 		     struct nfs_commit_info *cinfo)
1639 {
1640 	struct nfs_page *first = nfs_list_entry(head->next);
1641 	struct inode *inode = d_inode(first->wb_context->dentry);
1642 
1643 	/* Set up the RPC argument and reply structs
1644 	 * NB: take care not to mess about with data->commit et al. */
1645 
1646 	list_splice_init(head, &data->pages);
1647 
1648 	data->inode	  = inode;
1649 	data->cred	  = first->wb_context->cred;
1650 	data->lseg	  = lseg; /* reference transferred */
1651 	/* only set lwb for pnfs commit */
1652 	if (lseg)
1653 		data->lwb = nfs_get_lwb(&data->pages);
1654 	data->mds_ops     = &nfs_commit_ops;
1655 	data->completion_ops = cinfo->completion_ops;
1656 	data->dreq	  = cinfo->dreq;
1657 
1658 	data->args.fh     = NFS_FH(data->inode);
1659 	/* Note: we always request a commit of the entire inode */
1660 	data->args.offset = 0;
1661 	data->args.count  = 0;
1662 	data->context     = get_nfs_open_context(first->wb_context);
1663 	data->res.fattr   = &data->fattr;
1664 	data->res.verf    = &data->verf;
1665 	nfs_fattr_init(&data->fattr);
1666 }
1667 EXPORT_SYMBOL_GPL(nfs_init_commit);
1668 
1669 void nfs_retry_commit(struct list_head *page_list,
1670 		      struct pnfs_layout_segment *lseg,
1671 		      struct nfs_commit_info *cinfo,
1672 		      u32 ds_commit_idx)
1673 {
1674 	struct nfs_page *req;
1675 
1676 	while (!list_empty(page_list)) {
1677 		req = nfs_list_entry(page_list->next);
1678 		nfs_list_remove_request(req);
1679 		nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
1680 		if (!cinfo->dreq)
1681 			nfs_clear_page_commit(req->wb_page);
1682 		nfs_unlock_and_release_request(req);
1683 	}
1684 }
1685 EXPORT_SYMBOL_GPL(nfs_retry_commit);
1686 
1687 static void
1688 nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1689 		struct nfs_page *req)
1690 {
1691 	__set_page_dirty_nobuffers(req->wb_page);
1692 }
1693 
1694 /*
1695  * Commit dirty pages
1696  */
1697 static int
1698 nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1699 		struct nfs_commit_info *cinfo)
1700 {
1701 	struct nfs_commit_data	*data;
1702 
1703 	/* another commit raced with us */
1704 	if (list_empty(head))
1705 		return 0;
1706 
1707 	data = nfs_commitdata_alloc();
1708 
1709 	if (!data)
1710 		goto out_bad;
1711 
1712 	/* Set up the argument struct */
1713 	nfs_init_commit(data, head, NULL, cinfo);
1714 	atomic_inc(&cinfo->mds->rpcs_out);
1715 	return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
1716 				   data->mds_ops, how, 0);
1717  out_bad:
1718 	nfs_retry_commit(head, NULL, cinfo, 0);
1719 	return -ENOMEM;
1720 }
1721 
1722 int nfs_commit_file(struct file *file, struct nfs_write_verifier *verf)
1723 {
1724 	struct inode *inode = file_inode(file);
1725 	struct nfs_open_context *open;
1726 	struct nfs_commit_info cinfo;
1727 	struct nfs_page *req;
1728 	int ret;
1729 
1730 	open = get_nfs_open_context(nfs_file_open_context(file));
1731 	req  = nfs_create_request(open, NULL, NULL, 0, i_size_read(inode));
1732 	if (IS_ERR(req)) {
1733 		ret = PTR_ERR(req);
1734 		goto out_put;
1735 	}
1736 
1737 	nfs_init_cinfo_from_inode(&cinfo, inode);
1738 
1739 	memcpy(&req->wb_verf, verf, sizeof(struct nfs_write_verifier));
1740 	nfs_request_add_commit_list(req, &cinfo);
1741 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
1742 	if (ret > 0)
1743 		ret = 0;
1744 
1745 	nfs_free_request(req);
1746 out_put:
1747 	put_nfs_open_context(open);
1748 	return ret;
1749 }
1750 EXPORT_SYMBOL_GPL(nfs_commit_file);
1751 
1752 /*
1753  * COMMIT call returned
1754  */
1755 static void nfs_commit_done(struct rpc_task *task, void *calldata)
1756 {
1757 	struct nfs_commit_data	*data = calldata;
1758 
1759         dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1760                                 task->tk_pid, task->tk_status);
1761 
1762 	/* Call the NFS version-specific code */
1763 	NFS_PROTO(data->inode)->commit_done(task, data);
1764 }
1765 
1766 static void nfs_commit_release_pages(struct nfs_commit_data *data)
1767 {
1768 	struct nfs_page	*req;
1769 	int status = data->task.tk_status;
1770 	struct nfs_commit_info cinfo;
1771 	struct nfs_server *nfss;
1772 
1773 	while (!list_empty(&data->pages)) {
1774 		req = nfs_list_entry(data->pages.next);
1775 		nfs_list_remove_request(req);
1776 		if (req->wb_page)
1777 			nfs_clear_page_commit(req->wb_page);
1778 
1779 		dprintk("NFS:       commit (%s/%llu %d@%lld)",
1780 			req->wb_context->dentry->d_sb->s_id,
1781 			(unsigned long long)NFS_FILEID(d_inode(req->wb_context->dentry)),
1782 			req->wb_bytes,
1783 			(long long)req_offset(req));
1784 		if (status < 0) {
1785 			nfs_context_set_write_error(req->wb_context, status);
1786 			if (req->wb_page)
1787 				nfs_inode_remove_request(req);
1788 			dprintk_cont(", error = %d\n", status);
1789 			goto next;
1790 		}
1791 
1792 		/* Okay, COMMIT succeeded, apparently. Check the verifier
1793 		 * returned by the server against all stored verfs. */
1794 		if (!nfs_write_verifier_cmp(&req->wb_verf, &data->verf.verifier)) {
1795 			/* We have a match */
1796 			if (req->wb_page)
1797 				nfs_inode_remove_request(req);
1798 			dprintk_cont(" OK\n");
1799 			goto next;
1800 		}
1801 		/* We have a mismatch. Write the page again */
1802 		dprintk_cont(" mismatch\n");
1803 		nfs_mark_request_dirty(req);
1804 		set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1805 	next:
1806 		nfs_unlock_and_release_request(req);
1807 	}
1808 	nfss = NFS_SERVER(data->inode);
1809 	if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
1810 		clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC);
1811 
1812 	nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1813 	nfs_commit_end(cinfo.mds);
1814 }
1815 
1816 static void nfs_commit_release(void *calldata)
1817 {
1818 	struct nfs_commit_data *data = calldata;
1819 
1820 	data->completion_ops->completion(data);
1821 	nfs_commitdata_release(calldata);
1822 }
1823 
1824 static const struct rpc_call_ops nfs_commit_ops = {
1825 	.rpc_call_prepare = nfs_commit_prepare,
1826 	.rpc_call_done = nfs_commit_done,
1827 	.rpc_release = nfs_commit_release,
1828 };
1829 
1830 static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1831 	.completion = nfs_commit_release_pages,
1832 	.resched_write = nfs_commit_resched_write,
1833 };
1834 
1835 int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1836 			    int how, struct nfs_commit_info *cinfo)
1837 {
1838 	int status;
1839 
1840 	status = pnfs_commit_list(inode, head, how, cinfo);
1841 	if (status == PNFS_NOT_ATTEMPTED)
1842 		status = nfs_commit_list(inode, head, how, cinfo);
1843 	return status;
1844 }
1845 
1846 int nfs_commit_inode(struct inode *inode, int how)
1847 {
1848 	LIST_HEAD(head);
1849 	struct nfs_commit_info cinfo;
1850 	int may_wait = how & FLUSH_SYNC;
1851 	int error = 0;
1852 	int res;
1853 
1854 	nfs_init_cinfo_from_inode(&cinfo, inode);
1855 	nfs_commit_begin(cinfo.mds);
1856 	res = nfs_scan_commit(inode, &head, &cinfo);
1857 	if (res)
1858 		error = nfs_generic_commit_list(inode, &head, how, &cinfo);
1859 	nfs_commit_end(cinfo.mds);
1860 	if (error < 0)
1861 		goto out_error;
1862 	if (!may_wait)
1863 		goto out_mark_dirty;
1864 	error = wait_on_commit(cinfo.mds);
1865 	if (error < 0)
1866 		return error;
1867 	return res;
1868 out_error:
1869 	res = error;
1870 	/* Note: If we exit without ensuring that the commit is complete,
1871 	 * we must mark the inode as dirty. Otherwise, future calls to
1872 	 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1873 	 * that the data is on the disk.
1874 	 */
1875 out_mark_dirty:
1876 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1877 	return res;
1878 }
1879 EXPORT_SYMBOL_GPL(nfs_commit_inode);
1880 
1881 int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1882 {
1883 	struct nfs_inode *nfsi = NFS_I(inode);
1884 	int flags = FLUSH_SYNC;
1885 	int ret = 0;
1886 
1887 	/* no commits means nothing needs to be done */
1888 	if (!nfsi->commit_info.ncommit)
1889 		return ret;
1890 
1891 	if (wbc->sync_mode == WB_SYNC_NONE) {
1892 		/* Don't commit yet if this is a non-blocking flush and there
1893 		 * are a lot of outstanding writes for this mapping.
1894 		 */
1895 		if (nfsi->commit_info.ncommit <= (nfsi->nrequests >> 1))
1896 			goto out_mark_dirty;
1897 
1898 		/* don't wait for the COMMIT response */
1899 		flags = 0;
1900 	}
1901 
1902 	ret = nfs_commit_inode(inode, flags);
1903 	if (ret >= 0) {
1904 		if (wbc->sync_mode == WB_SYNC_NONE) {
1905 			if (ret < wbc->nr_to_write)
1906 				wbc->nr_to_write -= ret;
1907 			else
1908 				wbc->nr_to_write = 0;
1909 		}
1910 		return 0;
1911 	}
1912 out_mark_dirty:
1913 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1914 	return ret;
1915 }
1916 EXPORT_SYMBOL_GPL(nfs_write_inode);
1917 
1918 /*
1919  * Wrapper for filemap_write_and_wait_range()
1920  *
1921  * Needed for pNFS in order to ensure data becomes visible to the
1922  * client.
1923  */
1924 int nfs_filemap_write_and_wait_range(struct address_space *mapping,
1925 		loff_t lstart, loff_t lend)
1926 {
1927 	int ret;
1928 
1929 	ret = filemap_write_and_wait_range(mapping, lstart, lend);
1930 	if (ret == 0)
1931 		ret = pnfs_sync_inode(mapping->host, true);
1932 	return ret;
1933 }
1934 EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
1935 
1936 /*
1937  * flush the inode to disk.
1938  */
1939 int nfs_wb_all(struct inode *inode)
1940 {
1941 	int ret;
1942 
1943 	trace_nfs_writeback_inode_enter(inode);
1944 
1945 	ret = filemap_write_and_wait(inode->i_mapping);
1946 	if (ret)
1947 		goto out;
1948 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
1949 	if (ret < 0)
1950 		goto out;
1951 	pnfs_sync_inode(inode, true);
1952 	ret = 0;
1953 
1954 out:
1955 	trace_nfs_writeback_inode_exit(inode, ret);
1956 	return ret;
1957 }
1958 EXPORT_SYMBOL_GPL(nfs_wb_all);
1959 
1960 int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1961 {
1962 	struct nfs_page *req;
1963 	int ret = 0;
1964 
1965 	wait_on_page_writeback(page);
1966 
1967 	/* blocking call to cancel all requests and join to a single (head)
1968 	 * request */
1969 	req = nfs_lock_and_join_requests(page, false);
1970 
1971 	if (IS_ERR(req)) {
1972 		ret = PTR_ERR(req);
1973 	} else if (req) {
1974 		/* all requests from this page have been cancelled by
1975 		 * nfs_lock_and_join_requests, so just remove the head
1976 		 * request from the inode / page_private pointer and
1977 		 * release it */
1978 		nfs_inode_remove_request(req);
1979 		nfs_unlock_and_release_request(req);
1980 	}
1981 
1982 	return ret;
1983 }
1984 
1985 /*
1986  * Write back all requests on one page - we do this before reading it.
1987  */
1988 int nfs_wb_single_page(struct inode *inode, struct page *page, bool launder)
1989 {
1990 	loff_t range_start = page_file_offset(page);
1991 	loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
1992 	struct writeback_control wbc = {
1993 		.sync_mode = WB_SYNC_ALL,
1994 		.nr_to_write = 0,
1995 		.range_start = range_start,
1996 		.range_end = range_end,
1997 	};
1998 	int ret;
1999 
2000 	trace_nfs_writeback_page_enter(inode);
2001 
2002 	for (;;) {
2003 		wait_on_page_writeback(page);
2004 		if (clear_page_dirty_for_io(page)) {
2005 			ret = nfs_writepage_locked(page, &wbc, launder);
2006 			if (ret < 0)
2007 				goto out_error;
2008 			continue;
2009 		}
2010 		ret = 0;
2011 		if (!PagePrivate(page))
2012 			break;
2013 		ret = nfs_commit_inode(inode, FLUSH_SYNC);
2014 		if (ret < 0)
2015 			goto out_error;
2016 	}
2017 out_error:
2018 	trace_nfs_writeback_page_exit(inode, ret);
2019 	return ret;
2020 }
2021 
2022 #ifdef CONFIG_MIGRATION
2023 int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
2024 		struct page *page, enum migrate_mode mode)
2025 {
2026 	/*
2027 	 * If PagePrivate is set, then the page is currently associated with
2028 	 * an in-progress read or write request. Don't try to migrate it.
2029 	 *
2030 	 * FIXME: we could do this in principle, but we'll need a way to ensure
2031 	 *        that we can safely release the inode reference while holding
2032 	 *        the page lock.
2033 	 */
2034 	if (PagePrivate(page))
2035 		return -EBUSY;
2036 
2037 	if (!nfs_fscache_release_page(page, GFP_KERNEL))
2038 		return -EBUSY;
2039 
2040 	return migrate_page(mapping, newpage, page, mode);
2041 }
2042 #endif
2043 
2044 int __init nfs_init_writepagecache(void)
2045 {
2046 	nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
2047 					     sizeof(struct nfs_pgio_header),
2048 					     0, SLAB_HWCACHE_ALIGN,
2049 					     NULL);
2050 	if (nfs_wdata_cachep == NULL)
2051 		return -ENOMEM;
2052 
2053 	nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
2054 						     nfs_wdata_cachep);
2055 	if (nfs_wdata_mempool == NULL)
2056 		goto out_destroy_write_cache;
2057 
2058 	nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
2059 					     sizeof(struct nfs_commit_data),
2060 					     0, SLAB_HWCACHE_ALIGN,
2061 					     NULL);
2062 	if (nfs_cdata_cachep == NULL)
2063 		goto out_destroy_write_mempool;
2064 
2065 	nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
2066 						      nfs_cdata_cachep);
2067 	if (nfs_commit_mempool == NULL)
2068 		goto out_destroy_commit_cache;
2069 
2070 	/*
2071 	 * NFS congestion size, scale with available memory.
2072 	 *
2073 	 *  64MB:    8192k
2074 	 * 128MB:   11585k
2075 	 * 256MB:   16384k
2076 	 * 512MB:   23170k
2077 	 *   1GB:   32768k
2078 	 *   2GB:   46340k
2079 	 *   4GB:   65536k
2080 	 *   8GB:   92681k
2081 	 *  16GB:  131072k
2082 	 *
2083 	 * This allows larger machines to have larger/more transfers.
2084 	 * Limit the default to 256M
2085 	 */
2086 	nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
2087 	if (nfs_congestion_kb > 256*1024)
2088 		nfs_congestion_kb = 256*1024;
2089 
2090 	return 0;
2091 
2092 out_destroy_commit_cache:
2093 	kmem_cache_destroy(nfs_cdata_cachep);
2094 out_destroy_write_mempool:
2095 	mempool_destroy(nfs_wdata_mempool);
2096 out_destroy_write_cache:
2097 	kmem_cache_destroy(nfs_wdata_cachep);
2098 	return -ENOMEM;
2099 }
2100 
2101 void nfs_destroy_writepagecache(void)
2102 {
2103 	mempool_destroy(nfs_commit_mempool);
2104 	kmem_cache_destroy(nfs_cdata_cachep);
2105 	mempool_destroy(nfs_wdata_mempool);
2106 	kmem_cache_destroy(nfs_wdata_cachep);
2107 }
2108 
2109 static const struct nfs_rw_ops nfs_rw_write_ops = {
2110 	.rw_mode		= FMODE_WRITE,
2111 	.rw_alloc_header	= nfs_writehdr_alloc,
2112 	.rw_free_header		= nfs_writehdr_free,
2113 	.rw_done		= nfs_writeback_done,
2114 	.rw_result		= nfs_writeback_result,
2115 	.rw_initiate		= nfs_initiate_write,
2116 };
2117