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