mdio-sun4i: oops in error handling in probe
[linux/fpc-iii.git] / fs / nfs / write.c
blobecb0f9fd56326766ce9b54971cfcdc3c9114d019
1 /*
2 * linux/fs/nfs/write.c
4 * Write file data over NFS.
6 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
7 */
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>
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>
25 #include <asm/uaccess.h>
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"
34 #include "nfstrace.h"
36 #define NFSDBG_FACILITY NFSDBG_PAGECACHE
38 #define MIN_POOL_WRITE (32)
39 #define MIN_POOL_COMMIT (4)
42 * Local function declarations
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);
51 static struct kmem_cache *nfs_wdata_cachep;
52 static mempool_t *nfs_wdata_mempool;
53 static struct kmem_cache *nfs_cdata_cachep;
54 static mempool_t *nfs_commit_mempool;
56 struct nfs_commit_data *nfs_commitdata_alloc(void)
58 struct nfs_commit_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
60 if (p) {
61 memset(p, 0, sizeof(*p));
62 INIT_LIST_HEAD(&p->pages);
64 return p;
66 EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
68 void nfs_commit_free(struct nfs_commit_data *p)
70 mempool_free(p, nfs_commit_mempool);
72 EXPORT_SYMBOL_GPL(nfs_commit_free);
74 static struct nfs_pgio_header *nfs_writehdr_alloc(void)
76 struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
78 if (p)
79 memset(p, 0, sizeof(*p));
80 return p;
83 static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
85 mempool_free(hdr, nfs_wdata_mempool);
88 static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
90 ctx->error = error;
91 smp_wmb();
92 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
96 * nfs_page_find_head_request_locked - find head request associated with @page
98 * must be called while holding the inode lock.
100 * returns matching head request with reference held, or NULL if not found.
102 static struct nfs_page *
103 nfs_page_find_head_request_locked(struct nfs_inode *nfsi, struct page *page)
105 struct nfs_page *req = NULL;
107 if (PagePrivate(page))
108 req = (struct nfs_page *)page_private(page);
109 else if (unlikely(PageSwapCache(page))) {
110 struct nfs_page *freq, *t;
112 /* Linearly search the commit list for the correct req */
113 list_for_each_entry_safe(freq, t, &nfsi->commit_info.list, wb_list) {
114 if (freq->wb_page == page) {
115 req = freq->wb_head;
116 break;
121 if (req) {
122 WARN_ON_ONCE(req->wb_head != req);
124 kref_get(&req->wb_kref);
127 return req;
131 * nfs_page_find_head_request - find head request associated with @page
133 * returns matching head request with reference held, or NULL if not found.
135 static struct nfs_page *nfs_page_find_head_request(struct page *page)
137 struct inode *inode = page_file_mapping(page)->host;
138 struct nfs_page *req = NULL;
140 spin_lock(&inode->i_lock);
141 req = nfs_page_find_head_request_locked(NFS_I(inode), page);
142 spin_unlock(&inode->i_lock);
143 return req;
146 /* Adjust the file length if we're writing beyond the end */
147 static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
149 struct inode *inode = page_file_mapping(page)->host;
150 loff_t end, i_size;
151 pgoff_t end_index;
153 spin_lock(&inode->i_lock);
154 i_size = i_size_read(inode);
155 end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
156 if (i_size > 0 && page_file_index(page) < end_index)
157 goto out;
158 end = page_file_offset(page) + ((loff_t)offset+count);
159 if (i_size >= end)
160 goto out;
161 i_size_write(inode, end);
162 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
163 out:
164 spin_unlock(&inode->i_lock);
167 /* A writeback failed: mark the page as bad, and invalidate the page cache */
168 static void nfs_set_pageerror(struct page *page)
170 nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page));
174 * nfs_page_group_search_locked
175 * @head - head request of page group
176 * @page_offset - offset into page
178 * Search page group with head @head to find a request that contains the
179 * page offset @page_offset.
181 * Returns a pointer to the first matching nfs request, or NULL if no
182 * match is found.
184 * Must be called with the page group lock held
186 static struct nfs_page *
187 nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
189 struct nfs_page *req;
191 WARN_ON_ONCE(head != head->wb_head);
192 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_head->wb_flags));
194 req = head;
195 do {
196 if (page_offset >= req->wb_pgbase &&
197 page_offset < (req->wb_pgbase + req->wb_bytes))
198 return req;
200 req = req->wb_this_page;
201 } while (req != head);
203 return NULL;
207 * nfs_page_group_covers_page
208 * @head - head request of page group
210 * Return true if the page group with head @head covers the whole page,
211 * returns false otherwise
213 static bool nfs_page_group_covers_page(struct nfs_page *req)
215 struct nfs_page *tmp;
216 unsigned int pos = 0;
217 unsigned int len = nfs_page_length(req->wb_page);
219 nfs_page_group_lock(req, false);
221 do {
222 tmp = nfs_page_group_search_locked(req->wb_head, pos);
223 if (tmp) {
224 /* no way this should happen */
225 WARN_ON_ONCE(tmp->wb_pgbase != pos);
226 pos += tmp->wb_bytes - (pos - tmp->wb_pgbase);
228 } while (tmp && pos < len);
230 nfs_page_group_unlock(req);
231 WARN_ON_ONCE(pos > len);
232 return pos == len;
235 /* We can set the PG_uptodate flag if we see that a write request
236 * covers the full page.
238 static void nfs_mark_uptodate(struct nfs_page *req)
240 if (PageUptodate(req->wb_page))
241 return;
242 if (!nfs_page_group_covers_page(req))
243 return;
244 SetPageUptodate(req->wb_page);
247 static int wb_priority(struct writeback_control *wbc)
249 if (wbc->for_reclaim)
250 return FLUSH_HIGHPRI | FLUSH_STABLE;
251 if (wbc->for_kupdate || wbc->for_background)
252 return FLUSH_LOWPRI | FLUSH_COND_STABLE;
253 return FLUSH_COND_STABLE;
257 * NFS congestion control
260 int nfs_congestion_kb;
262 #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
263 #define NFS_CONGESTION_OFF_THRESH \
264 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
266 static void nfs_set_page_writeback(struct page *page)
268 struct nfs_server *nfss = NFS_SERVER(page_file_mapping(page)->host);
269 int ret = test_set_page_writeback(page);
271 WARN_ON_ONCE(ret != 0);
273 if (atomic_long_inc_return(&nfss->writeback) >
274 NFS_CONGESTION_ON_THRESH) {
275 set_bdi_congested(&nfss->backing_dev_info,
276 BLK_RW_ASYNC);
280 static void nfs_end_page_writeback(struct nfs_page *req)
282 struct inode *inode = page_file_mapping(req->wb_page)->host;
283 struct nfs_server *nfss = NFS_SERVER(inode);
285 if (!nfs_page_group_sync_on_bit(req, PG_WB_END))
286 return;
288 end_page_writeback(req->wb_page);
289 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
290 clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
294 /* nfs_page_group_clear_bits
295 * @req - an nfs request
296 * clears all page group related bits from @req
298 static void
299 nfs_page_group_clear_bits(struct nfs_page *req)
301 clear_bit(PG_TEARDOWN, &req->wb_flags);
302 clear_bit(PG_UNLOCKPAGE, &req->wb_flags);
303 clear_bit(PG_UPTODATE, &req->wb_flags);
304 clear_bit(PG_WB_END, &req->wb_flags);
305 clear_bit(PG_REMOVE, &req->wb_flags);
310 * nfs_unroll_locks_and_wait - unlock all newly locked reqs and wait on @req
312 * this is a helper function for nfs_lock_and_join_requests
314 * @inode - inode associated with request page group, must be holding inode lock
315 * @head - head request of page group, must be holding head lock
316 * @req - request that couldn't lock and needs to wait on the req bit lock
317 * @nonblock - if true, don't actually wait
319 * NOTE: this must be called holding page_group bit lock and inode spin lock
320 * and BOTH will be released before returning.
322 * returns 0 on success, < 0 on error.
324 static int
325 nfs_unroll_locks_and_wait(struct inode *inode, struct nfs_page *head,
326 struct nfs_page *req, bool nonblock)
327 __releases(&inode->i_lock)
329 struct nfs_page *tmp;
330 int ret;
332 /* relinquish all the locks successfully grabbed this run */
333 for (tmp = head ; tmp != req; tmp = tmp->wb_this_page)
334 nfs_unlock_request(tmp);
336 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
338 /* grab a ref on the request that will be waited on */
339 kref_get(&req->wb_kref);
341 nfs_page_group_unlock(head);
342 spin_unlock(&inode->i_lock);
344 /* release ref from nfs_page_find_head_request_locked */
345 nfs_release_request(head);
347 if (!nonblock)
348 ret = nfs_wait_on_request(req);
349 else
350 ret = -EAGAIN;
351 nfs_release_request(req);
353 return ret;
357 * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
359 * @destroy_list - request list (using wb_this_page) terminated by @old_head
360 * @old_head - the old head of the list
362 * All subrequests must be locked and removed from all lists, so at this point
363 * they are only "active" in this function, and possibly in nfs_wait_on_request
364 * with a reference held by some other context.
366 static void
367 nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
368 struct nfs_page *old_head)
370 while (destroy_list) {
371 struct nfs_page *subreq = destroy_list;
373 destroy_list = (subreq->wb_this_page == old_head) ?
374 NULL : subreq->wb_this_page;
376 WARN_ON_ONCE(old_head != subreq->wb_head);
378 /* make sure old group is not used */
379 subreq->wb_head = subreq;
380 subreq->wb_this_page = subreq;
382 /* subreq is now totally disconnected from page group or any
383 * write / commit lists. last chance to wake any waiters */
384 nfs_unlock_request(subreq);
386 if (!test_bit(PG_TEARDOWN, &subreq->wb_flags)) {
387 /* release ref on old head request */
388 nfs_release_request(old_head);
390 nfs_page_group_clear_bits(subreq);
392 /* release the PG_INODE_REF reference */
393 if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags))
394 nfs_release_request(subreq);
395 else
396 WARN_ON_ONCE(1);
397 } else {
398 WARN_ON_ONCE(test_bit(PG_CLEAN, &subreq->wb_flags));
399 /* zombie requests have already released the last
400 * reference and were waiting on the rest of the
401 * group to complete. Since it's no longer part of a
402 * group, simply free the request */
403 nfs_page_group_clear_bits(subreq);
404 nfs_free_request(subreq);
410 * nfs_lock_and_join_requests - join all subreqs to the head req and return
411 * a locked reference, cancelling any pending
412 * operations for this page.
414 * @page - the page used to lookup the "page group" of nfs_page structures
415 * @nonblock - if true, don't block waiting for request locks
417 * This function joins all sub requests to the head request by first
418 * locking all requests in the group, cancelling any pending operations
419 * and finally updating the head request to cover the whole range covered by
420 * the (former) group. All subrequests are removed from any write or commit
421 * lists, unlinked from the group and destroyed.
423 * Returns a locked, referenced pointer to the head request - which after
424 * this call is guaranteed to be the only request associated with the page.
425 * Returns NULL if no requests are found for @page, or a ERR_PTR if an
426 * error was encountered.
428 static struct nfs_page *
429 nfs_lock_and_join_requests(struct page *page, bool nonblock)
431 struct inode *inode = page_file_mapping(page)->host;
432 struct nfs_page *head, *subreq;
433 struct nfs_page *destroy_list = NULL;
434 unsigned int total_bytes;
435 int ret;
437 try_again:
438 total_bytes = 0;
440 WARN_ON_ONCE(destroy_list);
442 spin_lock(&inode->i_lock);
445 * A reference is taken only on the head request which acts as a
446 * reference to the whole page group - the group will not be destroyed
447 * until the head reference is released.
449 head = nfs_page_find_head_request_locked(NFS_I(inode), page);
451 if (!head) {
452 spin_unlock(&inode->i_lock);
453 return NULL;
456 /* holding inode lock, so always make a non-blocking call to try the
457 * page group lock */
458 ret = nfs_page_group_lock(head, true);
459 if (ret < 0) {
460 spin_unlock(&inode->i_lock);
462 if (!nonblock && ret == -EAGAIN) {
463 nfs_page_group_lock_wait(head);
464 nfs_release_request(head);
465 goto try_again;
468 nfs_release_request(head);
469 return ERR_PTR(ret);
472 /* lock each request in the page group */
473 subreq = head;
474 do {
476 * Subrequests are always contiguous, non overlapping
477 * and in order. If not, it's a programming error.
479 WARN_ON_ONCE(subreq->wb_offset !=
480 (head->wb_offset + total_bytes));
482 /* keep track of how many bytes this group covers */
483 total_bytes += subreq->wb_bytes;
485 if (!nfs_lock_request(subreq)) {
486 /* releases page group bit lock and
487 * inode spin lock and all references */
488 ret = nfs_unroll_locks_and_wait(inode, head,
489 subreq, nonblock);
491 if (ret == 0)
492 goto try_again;
494 return ERR_PTR(ret);
497 subreq = subreq->wb_this_page;
498 } while (subreq != head);
500 /* Now that all requests are locked, make sure they aren't on any list.
501 * Commit list removal accounting is done after locks are dropped */
502 subreq = head;
503 do {
504 nfs_clear_request_commit(subreq);
505 subreq = subreq->wb_this_page;
506 } while (subreq != head);
508 /* unlink subrequests from head, destroy them later */
509 if (head->wb_this_page != head) {
510 /* destroy list will be terminated by head */
511 destroy_list = head->wb_this_page;
512 head->wb_this_page = head;
514 /* change head request to cover whole range that
515 * the former page group covered */
516 head->wb_bytes = total_bytes;
520 * prepare head request to be added to new pgio descriptor
522 nfs_page_group_clear_bits(head);
525 * some part of the group was still on the inode list - otherwise
526 * the group wouldn't be involved in async write.
527 * grab a reference for the head request, iff it needs one.
529 if (!test_and_set_bit(PG_INODE_REF, &head->wb_flags))
530 kref_get(&head->wb_kref);
532 nfs_page_group_unlock(head);
534 /* drop lock to clean uprequests on destroy list */
535 spin_unlock(&inode->i_lock);
537 nfs_destroy_unlinked_subrequests(destroy_list, head);
539 /* still holds ref on head from nfs_page_find_head_request_locked
540 * and still has lock on head from lock loop */
541 return head;
545 * Find an associated nfs write request, and prepare to flush it out
546 * May return an error if the user signalled nfs_wait_on_request().
548 static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
549 struct page *page, bool nonblock)
551 struct nfs_page *req;
552 int ret = 0;
554 req = nfs_lock_and_join_requests(page, nonblock);
555 if (!req)
556 goto out;
557 ret = PTR_ERR(req);
558 if (IS_ERR(req))
559 goto out;
561 nfs_set_page_writeback(page);
562 WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
564 ret = 0;
565 if (!nfs_pageio_add_request(pgio, req)) {
566 nfs_redirty_request(req);
567 ret = pgio->pg_error;
569 out:
570 return ret;
573 static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
575 struct inode *inode = page_file_mapping(page)->host;
576 int ret;
578 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
579 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
581 nfs_pageio_cond_complete(pgio, page_file_index(page));
582 ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE);
583 if (ret == -EAGAIN) {
584 redirty_page_for_writepage(wbc, page);
585 ret = 0;
587 return ret;
591 * Write an mmapped page to the server.
593 static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
595 struct nfs_pageio_descriptor pgio;
596 int err;
598 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc),
599 false, &nfs_async_write_completion_ops);
600 err = nfs_do_writepage(page, wbc, &pgio);
601 nfs_pageio_complete(&pgio);
602 if (err < 0)
603 return err;
604 if (pgio.pg_error < 0)
605 return pgio.pg_error;
606 return 0;
609 int nfs_writepage(struct page *page, struct writeback_control *wbc)
611 int ret;
613 ret = nfs_writepage_locked(page, wbc);
614 unlock_page(page);
615 return ret;
618 static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
620 int ret;
622 ret = nfs_do_writepage(page, wbc, data);
623 unlock_page(page);
624 return ret;
627 int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
629 struct inode *inode = mapping->host;
630 unsigned long *bitlock = &NFS_I(inode)->flags;
631 struct nfs_pageio_descriptor pgio;
632 int err;
634 /* Stop dirtying of new pages while we sync */
635 err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
636 nfs_wait_bit_killable, TASK_KILLABLE);
637 if (err)
638 goto out_err;
640 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
642 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
643 &nfs_async_write_completion_ops);
644 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
645 nfs_pageio_complete(&pgio);
647 clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
648 smp_mb__after_atomic();
649 wake_up_bit(bitlock, NFS_INO_FLUSHING);
651 if (err < 0)
652 goto out_err;
653 err = pgio.pg_error;
654 if (err < 0)
655 goto out_err;
656 return 0;
657 out_err:
658 return err;
662 * Insert a write request into an inode
664 static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
666 struct nfs_inode *nfsi = NFS_I(inode);
668 WARN_ON_ONCE(req->wb_this_page != req);
670 /* Lock the request! */
671 nfs_lock_request(req);
673 spin_lock(&inode->i_lock);
674 if (!nfsi->npages && NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
675 inode->i_version++;
677 * Swap-space should not get truncated. Hence no need to plug the race
678 * with invalidate/truncate.
680 if (likely(!PageSwapCache(req->wb_page))) {
681 set_bit(PG_MAPPED, &req->wb_flags);
682 SetPagePrivate(req->wb_page);
683 set_page_private(req->wb_page, (unsigned long)req);
685 nfsi->npages++;
686 /* this a head request for a page group - mark it as having an
687 * extra reference so sub groups can follow suit */
688 WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
689 kref_get(&req->wb_kref);
690 spin_unlock(&inode->i_lock);
694 * Remove a write request from an inode
696 static void nfs_inode_remove_request(struct nfs_page *req)
698 struct inode *inode = req->wb_context->dentry->d_inode;
699 struct nfs_inode *nfsi = NFS_I(inode);
700 struct nfs_page *head;
702 if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
703 head = req->wb_head;
705 spin_lock(&inode->i_lock);
706 if (likely(!PageSwapCache(head->wb_page))) {
707 set_page_private(head->wb_page, 0);
708 ClearPagePrivate(head->wb_page);
709 clear_bit(PG_MAPPED, &head->wb_flags);
711 nfsi->npages--;
712 spin_unlock(&inode->i_lock);
715 if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
716 nfs_release_request(req);
719 static void
720 nfs_mark_request_dirty(struct nfs_page *req)
722 __set_page_dirty_nobuffers(req->wb_page);
725 #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4)
727 * nfs_request_add_commit_list - add request to a commit list
728 * @req: pointer to a struct nfs_page
729 * @dst: commit list head
730 * @cinfo: holds list lock and accounting info
732 * This sets the PG_CLEAN bit, updates the cinfo count of
733 * number of outstanding requests requiring a commit as well as
734 * the MM page stats.
736 * The caller must _not_ hold the cinfo->lock, but must be
737 * holding the nfs_page lock.
739 void
740 nfs_request_add_commit_list(struct nfs_page *req, struct list_head *dst,
741 struct nfs_commit_info *cinfo)
743 set_bit(PG_CLEAN, &(req)->wb_flags);
744 spin_lock(cinfo->lock);
745 nfs_list_add_request(req, dst);
746 cinfo->mds->ncommit++;
747 spin_unlock(cinfo->lock);
748 if (!cinfo->dreq) {
749 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
750 inc_bdi_stat(page_file_mapping(req->wb_page)->backing_dev_info,
751 BDI_RECLAIMABLE);
752 __mark_inode_dirty(req->wb_context->dentry->d_inode,
753 I_DIRTY_DATASYNC);
756 EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
759 * nfs_request_remove_commit_list - Remove request from a commit list
760 * @req: pointer to a nfs_page
761 * @cinfo: holds list lock and accounting info
763 * This clears the PG_CLEAN bit, and updates the cinfo's count of
764 * number of outstanding requests requiring a commit
765 * It does not update the MM page stats.
767 * The caller _must_ hold the cinfo->lock and the nfs_page lock.
769 void
770 nfs_request_remove_commit_list(struct nfs_page *req,
771 struct nfs_commit_info *cinfo)
773 if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
774 return;
775 nfs_list_remove_request(req);
776 cinfo->mds->ncommit--;
778 EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
780 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
781 struct inode *inode)
783 cinfo->lock = &inode->i_lock;
784 cinfo->mds = &NFS_I(inode)->commit_info;
785 cinfo->ds = pnfs_get_ds_info(inode);
786 cinfo->dreq = NULL;
787 cinfo->completion_ops = &nfs_commit_completion_ops;
790 void nfs_init_cinfo(struct nfs_commit_info *cinfo,
791 struct inode *inode,
792 struct nfs_direct_req *dreq)
794 if (dreq)
795 nfs_init_cinfo_from_dreq(cinfo, dreq);
796 else
797 nfs_init_cinfo_from_inode(cinfo, inode);
799 EXPORT_SYMBOL_GPL(nfs_init_cinfo);
802 * Add a request to the inode's commit list.
804 void
805 nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
806 struct nfs_commit_info *cinfo)
808 if (pnfs_mark_request_commit(req, lseg, cinfo))
809 return;
810 nfs_request_add_commit_list(req, &cinfo->mds->list, cinfo);
813 static void
814 nfs_clear_page_commit(struct page *page)
816 dec_zone_page_state(page, NR_UNSTABLE_NFS);
817 dec_bdi_stat(page_file_mapping(page)->backing_dev_info, BDI_RECLAIMABLE);
820 /* Called holding inode (/cinfo) lock */
821 static void
822 nfs_clear_request_commit(struct nfs_page *req)
824 if (test_bit(PG_CLEAN, &req->wb_flags)) {
825 struct inode *inode = req->wb_context->dentry->d_inode;
826 struct nfs_commit_info cinfo;
828 nfs_init_cinfo_from_inode(&cinfo, inode);
829 if (!pnfs_clear_request_commit(req, &cinfo)) {
830 nfs_request_remove_commit_list(req, &cinfo);
832 nfs_clear_page_commit(req->wb_page);
836 static inline
837 int nfs_write_need_commit(struct nfs_pgio_header *hdr)
839 if (hdr->writeverf.committed == NFS_DATA_SYNC)
840 return hdr->lseg == NULL;
841 return hdr->writeverf.committed != NFS_FILE_SYNC;
844 #else
845 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
846 struct inode *inode)
850 void nfs_init_cinfo(struct nfs_commit_info *cinfo,
851 struct inode *inode,
852 struct nfs_direct_req *dreq)
856 void
857 nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
858 struct nfs_commit_info *cinfo)
862 static void
863 nfs_clear_request_commit(struct nfs_page *req)
867 static inline
868 int nfs_write_need_commit(struct nfs_pgio_header *hdr)
870 return 0;
873 #endif
875 static void nfs_write_completion(struct nfs_pgio_header *hdr)
877 struct nfs_commit_info cinfo;
878 unsigned long bytes = 0;
880 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
881 goto out;
882 nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
883 while (!list_empty(&hdr->pages)) {
884 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
886 bytes += req->wb_bytes;
887 nfs_list_remove_request(req);
888 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
889 (hdr->good_bytes < bytes)) {
890 nfs_set_pageerror(req->wb_page);
891 nfs_context_set_write_error(req->wb_context, hdr->error);
892 goto remove_req;
894 if (test_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags)) {
895 nfs_mark_request_dirty(req);
896 goto next;
898 if (test_bit(NFS_IOHDR_NEED_COMMIT, &hdr->flags)) {
899 memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
900 nfs_mark_request_commit(req, hdr->lseg, &cinfo);
901 goto next;
903 remove_req:
904 nfs_inode_remove_request(req);
905 next:
906 nfs_unlock_request(req);
907 nfs_end_page_writeback(req);
908 nfs_release_request(req);
910 out:
911 hdr->release(hdr);
914 #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4)
915 unsigned long
916 nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
918 return cinfo->mds->ncommit;
921 /* cinfo->lock held by caller */
923 nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
924 struct nfs_commit_info *cinfo, int max)
926 struct nfs_page *req, *tmp;
927 int ret = 0;
929 list_for_each_entry_safe(req, tmp, src, wb_list) {
930 if (!nfs_lock_request(req))
931 continue;
932 kref_get(&req->wb_kref);
933 if (cond_resched_lock(cinfo->lock))
934 list_safe_reset_next(req, tmp, wb_list);
935 nfs_request_remove_commit_list(req, cinfo);
936 nfs_list_add_request(req, dst);
937 ret++;
938 if ((ret == max) && !cinfo->dreq)
939 break;
941 return ret;
945 * nfs_scan_commit - Scan an inode for commit requests
946 * @inode: NFS inode to scan
947 * @dst: mds destination list
948 * @cinfo: mds and ds lists of reqs ready to commit
950 * Moves requests from the inode's 'commit' request list.
951 * The requests are *not* checked to ensure that they form a contiguous set.
954 nfs_scan_commit(struct inode *inode, struct list_head *dst,
955 struct nfs_commit_info *cinfo)
957 int ret = 0;
959 spin_lock(cinfo->lock);
960 if (cinfo->mds->ncommit > 0) {
961 const int max = INT_MAX;
963 ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
964 cinfo, max);
965 ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
967 spin_unlock(cinfo->lock);
968 return ret;
971 #else
972 unsigned long nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
974 return 0;
977 int nfs_scan_commit(struct inode *inode, struct list_head *dst,
978 struct nfs_commit_info *cinfo)
980 return 0;
982 #endif
985 * Search for an existing write request, and attempt to update
986 * it to reflect a new dirty region on a given page.
988 * If the attempt fails, then the existing request is flushed out
989 * to disk.
991 static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
992 struct page *page,
993 unsigned int offset,
994 unsigned int bytes)
996 struct nfs_page *req;
997 unsigned int rqend;
998 unsigned int end;
999 int error;
1001 if (!PagePrivate(page))
1002 return NULL;
1004 end = offset + bytes;
1005 spin_lock(&inode->i_lock);
1007 for (;;) {
1008 req = nfs_page_find_head_request_locked(NFS_I(inode), page);
1009 if (req == NULL)
1010 goto out_unlock;
1012 /* should be handled by nfs_flush_incompatible */
1013 WARN_ON_ONCE(req->wb_head != req);
1014 WARN_ON_ONCE(req->wb_this_page != req);
1016 rqend = req->wb_offset + req->wb_bytes;
1018 * Tell the caller to flush out the request if
1019 * the offsets are non-contiguous.
1020 * Note: nfs_flush_incompatible() will already
1021 * have flushed out requests having wrong owners.
1023 if (offset > rqend
1024 || end < req->wb_offset)
1025 goto out_flushme;
1027 if (nfs_lock_request(req))
1028 break;
1030 /* The request is locked, so wait and then retry */
1031 spin_unlock(&inode->i_lock);
1032 error = nfs_wait_on_request(req);
1033 nfs_release_request(req);
1034 if (error != 0)
1035 goto out_err;
1036 spin_lock(&inode->i_lock);
1039 /* Okay, the request matches. Update the region */
1040 if (offset < req->wb_offset) {
1041 req->wb_offset = offset;
1042 req->wb_pgbase = offset;
1044 if (end > rqend)
1045 req->wb_bytes = end - req->wb_offset;
1046 else
1047 req->wb_bytes = rqend - req->wb_offset;
1048 out_unlock:
1049 if (req)
1050 nfs_clear_request_commit(req);
1051 spin_unlock(&inode->i_lock);
1052 return req;
1053 out_flushme:
1054 spin_unlock(&inode->i_lock);
1055 nfs_release_request(req);
1056 error = nfs_wb_page(inode, page);
1057 out_err:
1058 return ERR_PTR(error);
1062 * Try to update an existing write request, or create one if there is none.
1064 * Note: Should always be called with the Page Lock held to prevent races
1065 * if we have to add a new request. Also assumes that the caller has
1066 * already called nfs_flush_incompatible() if necessary.
1068 static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1069 struct page *page, unsigned int offset, unsigned int bytes)
1071 struct inode *inode = page_file_mapping(page)->host;
1072 struct nfs_page *req;
1074 req = nfs_try_to_update_request(inode, page, offset, bytes);
1075 if (req != NULL)
1076 goto out;
1077 req = nfs_create_request(ctx, page, NULL, offset, bytes);
1078 if (IS_ERR(req))
1079 goto out;
1080 nfs_inode_add_request(inode, req);
1081 out:
1082 return req;
1085 static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1086 unsigned int offset, unsigned int count)
1088 struct nfs_page *req;
1090 req = nfs_setup_write_request(ctx, page, offset, count);
1091 if (IS_ERR(req))
1092 return PTR_ERR(req);
1093 /* Update file length */
1094 nfs_grow_file(page, offset, count);
1095 nfs_mark_uptodate(req);
1096 nfs_mark_request_dirty(req);
1097 nfs_unlock_and_release_request(req);
1098 return 0;
1101 int nfs_flush_incompatible(struct file *file, struct page *page)
1103 struct nfs_open_context *ctx = nfs_file_open_context(file);
1104 struct nfs_lock_context *l_ctx;
1105 struct nfs_page *req;
1106 int do_flush, status;
1108 * Look for a request corresponding to this page. If there
1109 * is one, and it belongs to another file, we flush it out
1110 * before we try to copy anything into the page. Do this
1111 * due to the lack of an ACCESS-type call in NFSv2.
1112 * Also do the same if we find a request from an existing
1113 * dropped page.
1115 do {
1116 req = nfs_page_find_head_request(page);
1117 if (req == NULL)
1118 return 0;
1119 l_ctx = req->wb_lock_context;
1120 do_flush = req->wb_page != page || req->wb_context != ctx;
1121 /* for now, flush if more than 1 request in page_group */
1122 do_flush |= req->wb_this_page != req;
1123 if (l_ctx && ctx->dentry->d_inode->i_flock != NULL) {
1124 do_flush |= l_ctx->lockowner.l_owner != current->files
1125 || l_ctx->lockowner.l_pid != current->tgid;
1127 nfs_release_request(req);
1128 if (!do_flush)
1129 return 0;
1130 status = nfs_wb_page(page_file_mapping(page)->host, page);
1131 } while (status == 0);
1132 return status;
1136 * Avoid buffered writes when a open context credential's key would
1137 * expire soon.
1139 * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1141 * Return 0 and set a credential flag which triggers the inode to flush
1142 * and performs NFS_FILE_SYNC writes if the key will expired within
1143 * RPC_KEY_EXPIRE_TIMEO.
1146 nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1148 struct nfs_open_context *ctx = nfs_file_open_context(filp);
1149 struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1151 return rpcauth_key_timeout_notify(auth, ctx->cred);
1155 * Test if the open context credential key is marked to expire soon.
1157 bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx)
1159 return rpcauth_cred_key_to_expire(ctx->cred);
1163 * If the page cache is marked as unsafe or invalid, then we can't rely on
1164 * the PageUptodate() flag. In this case, we will need to turn off
1165 * write optimisations that depend on the page contents being correct.
1167 static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
1169 struct nfs_inode *nfsi = NFS_I(inode);
1171 if (nfs_have_delegated_attributes(inode))
1172 goto out;
1173 if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1174 return false;
1175 smp_rmb();
1176 if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
1177 return false;
1178 out:
1179 if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1180 return false;
1181 return PageUptodate(page) != 0;
1184 /* If we know the page is up to date, and we're not using byte range locks (or
1185 * if we have the whole file locked for writing), it may be more efficient to
1186 * extend the write to cover the entire page in order to avoid fragmentation
1187 * inefficiencies.
1189 * If the file is opened for synchronous writes then we can just skip the rest
1190 * of the checks.
1192 static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1194 if (file->f_flags & O_DSYNC)
1195 return 0;
1196 if (!nfs_write_pageuptodate(page, inode))
1197 return 0;
1198 if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1199 return 1;
1200 if (inode->i_flock == NULL || (inode->i_flock->fl_start == 0 &&
1201 inode->i_flock->fl_end == OFFSET_MAX &&
1202 inode->i_flock->fl_type != F_RDLCK))
1203 return 1;
1204 return 0;
1208 * Update and possibly write a cached page of an NFS file.
1210 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
1211 * things with a page scheduled for an RPC call (e.g. invalidate it).
1213 int nfs_updatepage(struct file *file, struct page *page,
1214 unsigned int offset, unsigned int count)
1216 struct nfs_open_context *ctx = nfs_file_open_context(file);
1217 struct inode *inode = page_file_mapping(page)->host;
1218 int status = 0;
1220 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
1222 dprintk("NFS: nfs_updatepage(%pD2 %d@%lld)\n",
1223 file, count, (long long)(page_file_offset(page) + offset));
1225 if (nfs_can_extend_write(file, page, inode)) {
1226 count = max(count + offset, nfs_page_length(page));
1227 offset = 0;
1230 status = nfs_writepage_setup(ctx, page, offset, count);
1231 if (status < 0)
1232 nfs_set_pageerror(page);
1233 else
1234 __set_page_dirty_nobuffers(page);
1236 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
1237 status, (long long)i_size_read(inode));
1238 return status;
1241 static int flush_task_priority(int how)
1243 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
1244 case FLUSH_HIGHPRI:
1245 return RPC_PRIORITY_HIGH;
1246 case FLUSH_LOWPRI:
1247 return RPC_PRIORITY_LOW;
1249 return RPC_PRIORITY_NORMAL;
1252 static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1253 struct rpc_message *msg,
1254 struct rpc_task_setup *task_setup_data, int how)
1256 struct inode *inode = hdr->inode;
1257 int priority = flush_task_priority(how);
1259 task_setup_data->priority = priority;
1260 NFS_PROTO(inode)->write_setup(hdr, msg);
1262 nfs4_state_protect_write(NFS_SERVER(inode)->nfs_client,
1263 &task_setup_data->rpc_client, msg, hdr);
1266 /* If a nfs_flush_* function fails, it should remove reqs from @head and
1267 * call this on each, which will prepare them to be retried on next
1268 * writeback using standard nfs.
1270 static void nfs_redirty_request(struct nfs_page *req)
1272 nfs_mark_request_dirty(req);
1273 nfs_unlock_request(req);
1274 nfs_end_page_writeback(req);
1275 nfs_release_request(req);
1278 static void nfs_async_write_error(struct list_head *head)
1280 struct nfs_page *req;
1282 while (!list_empty(head)) {
1283 req = nfs_list_entry(head->next);
1284 nfs_list_remove_request(req);
1285 nfs_redirty_request(req);
1289 static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1290 .error_cleanup = nfs_async_write_error,
1291 .completion = nfs_write_completion,
1294 void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1295 struct inode *inode, int ioflags, bool force_mds,
1296 const struct nfs_pgio_completion_ops *compl_ops)
1298 struct nfs_server *server = NFS_SERVER(inode);
1299 const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1301 #ifdef CONFIG_NFS_V4_1
1302 if (server->pnfs_curr_ld && !force_mds)
1303 pg_ops = server->pnfs_curr_ld->pg_write_ops;
1304 #endif
1305 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
1306 server->wsize, ioflags);
1308 EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
1310 void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1312 pgio->pg_ops = &nfs_pgio_rw_ops;
1313 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1315 EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1318 void nfs_commit_prepare(struct rpc_task *task, void *calldata)
1320 struct nfs_commit_data *data = calldata;
1322 NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
1325 static void nfs_writeback_release_common(struct nfs_pgio_header *hdr)
1327 int status = hdr->task.tk_status;
1329 if ((status >= 0) && nfs_write_need_commit(hdr)) {
1330 spin_lock(&hdr->lock);
1331 if (test_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags))
1332 ; /* Do nothing */
1333 else if (!test_and_set_bit(NFS_IOHDR_NEED_COMMIT, &hdr->flags))
1334 memcpy(&hdr->verf, &hdr->writeverf, sizeof(hdr->verf));
1335 else if (memcmp(&hdr->verf, &hdr->writeverf, sizeof(hdr->verf)))
1336 set_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags);
1337 spin_unlock(&hdr->lock);
1342 * Special version of should_remove_suid() that ignores capabilities.
1344 static int nfs_should_remove_suid(const struct inode *inode)
1346 umode_t mode = inode->i_mode;
1347 int kill = 0;
1349 /* suid always must be killed */
1350 if (unlikely(mode & S_ISUID))
1351 kill = ATTR_KILL_SUID;
1354 * sgid without any exec bits is just a mandatory locking mark; leave
1355 * it alone. If some exec bits are set, it's a real sgid; kill it.
1357 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1358 kill |= ATTR_KILL_SGID;
1360 if (unlikely(kill && S_ISREG(mode)))
1361 return kill;
1363 return 0;
1367 * This function is called when the WRITE call is complete.
1369 static int nfs_writeback_done(struct rpc_task *task,
1370 struct nfs_pgio_header *hdr,
1371 struct inode *inode)
1373 int status;
1376 * ->write_done will attempt to use post-op attributes to detect
1377 * conflicting writes by other clients. A strict interpretation
1378 * of close-to-open would allow us to continue caching even if
1379 * another writer had changed the file, but some applications
1380 * depend on tighter cache coherency when writing.
1382 status = NFS_PROTO(inode)->write_done(task, hdr);
1383 if (status != 0)
1384 return status;
1385 nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
1387 #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4)
1388 if (hdr->res.verf->committed < hdr->args.stable &&
1389 task->tk_status >= 0) {
1390 /* We tried a write call, but the server did not
1391 * commit data to stable storage even though we
1392 * requested it.
1393 * Note: There is a known bug in Tru64 < 5.0 in which
1394 * the server reports NFS_DATA_SYNC, but performs
1395 * NFS_FILE_SYNC. We therefore implement this checking
1396 * as a dprintk() in order to avoid filling syslog.
1398 static unsigned long complain;
1400 /* Note this will print the MDS for a DS write */
1401 if (time_before(complain, jiffies)) {
1402 dprintk("NFS: faulty NFS server %s:"
1403 " (committed = %d) != (stable = %d)\n",
1404 NFS_SERVER(inode)->nfs_client->cl_hostname,
1405 hdr->res.verf->committed, hdr->args.stable);
1406 complain = jiffies + 300 * HZ;
1409 #endif
1411 /* Deal with the suid/sgid bit corner case */
1412 if (nfs_should_remove_suid(inode))
1413 nfs_mark_for_revalidate(inode);
1414 return 0;
1418 * This function is called when the WRITE call is complete.
1420 static void nfs_writeback_result(struct rpc_task *task,
1421 struct nfs_pgio_header *hdr)
1423 struct nfs_pgio_args *argp = &hdr->args;
1424 struct nfs_pgio_res *resp = &hdr->res;
1426 if (resp->count < argp->count) {
1427 static unsigned long complain;
1429 /* This a short write! */
1430 nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
1432 /* Has the server at least made some progress? */
1433 if (resp->count == 0) {
1434 if (time_before(complain, jiffies)) {
1435 printk(KERN_WARNING
1436 "NFS: Server wrote zero bytes, expected %u.\n",
1437 argp->count);
1438 complain = jiffies + 300 * HZ;
1440 nfs_set_pgio_error(hdr, -EIO, argp->offset);
1441 task->tk_status = -EIO;
1442 return;
1444 /* Was this an NFSv2 write or an NFSv3 stable write? */
1445 if (resp->verf->committed != NFS_UNSTABLE) {
1446 /* Resend from where the server left off */
1447 hdr->mds_offset += resp->count;
1448 argp->offset += resp->count;
1449 argp->pgbase += resp->count;
1450 argp->count -= resp->count;
1451 } else {
1452 /* Resend as a stable write in order to avoid
1453 * headaches in the case of a server crash.
1455 argp->stable = NFS_FILE_SYNC;
1457 rpc_restart_call_prepare(task);
1462 #if IS_ENABLED(CONFIG_NFS_V3) || IS_ENABLED(CONFIG_NFS_V4)
1463 static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
1465 int ret;
1467 if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
1468 return 1;
1469 if (!may_wait)
1470 return 0;
1471 ret = out_of_line_wait_on_bit_lock(&nfsi->flags,
1472 NFS_INO_COMMIT,
1473 nfs_wait_bit_killable,
1474 TASK_KILLABLE);
1475 return (ret < 0) ? ret : 1;
1478 static void nfs_commit_clear_lock(struct nfs_inode *nfsi)
1480 clear_bit(NFS_INO_COMMIT, &nfsi->flags);
1481 smp_mb__after_atomic();
1482 wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
1485 void nfs_commitdata_release(struct nfs_commit_data *data)
1487 put_nfs_open_context(data->context);
1488 nfs_commit_free(data);
1490 EXPORT_SYMBOL_GPL(nfs_commitdata_release);
1492 int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1493 const struct rpc_call_ops *call_ops,
1494 int how, int flags)
1496 struct rpc_task *task;
1497 int priority = flush_task_priority(how);
1498 struct rpc_message msg = {
1499 .rpc_argp = &data->args,
1500 .rpc_resp = &data->res,
1501 .rpc_cred = data->cred,
1503 struct rpc_task_setup task_setup_data = {
1504 .task = &data->task,
1505 .rpc_client = clnt,
1506 .rpc_message = &msg,
1507 .callback_ops = call_ops,
1508 .callback_data = data,
1509 .workqueue = nfsiod_workqueue,
1510 .flags = RPC_TASK_ASYNC | flags,
1511 .priority = priority,
1513 /* Set up the initial task struct. */
1514 NFS_PROTO(data->inode)->commit_setup(data, &msg);
1516 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
1518 nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client,
1519 NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg);
1521 task = rpc_run_task(&task_setup_data);
1522 if (IS_ERR(task))
1523 return PTR_ERR(task);
1524 if (how & FLUSH_SYNC)
1525 rpc_wait_for_completion_task(task);
1526 rpc_put_task(task);
1527 return 0;
1529 EXPORT_SYMBOL_GPL(nfs_initiate_commit);
1532 * Set up the argument/result storage required for the RPC call.
1534 void nfs_init_commit(struct nfs_commit_data *data,
1535 struct list_head *head,
1536 struct pnfs_layout_segment *lseg,
1537 struct nfs_commit_info *cinfo)
1539 struct nfs_page *first = nfs_list_entry(head->next);
1540 struct inode *inode = first->wb_context->dentry->d_inode;
1542 /* Set up the RPC argument and reply structs
1543 * NB: take care not to mess about with data->commit et al. */
1545 list_splice_init(head, &data->pages);
1547 data->inode = inode;
1548 data->cred = first->wb_context->cred;
1549 data->lseg = lseg; /* reference transferred */
1550 data->mds_ops = &nfs_commit_ops;
1551 data->completion_ops = cinfo->completion_ops;
1552 data->dreq = cinfo->dreq;
1554 data->args.fh = NFS_FH(data->inode);
1555 /* Note: we always request a commit of the entire inode */
1556 data->args.offset = 0;
1557 data->args.count = 0;
1558 data->context = get_nfs_open_context(first->wb_context);
1559 data->res.fattr = &data->fattr;
1560 data->res.verf = &data->verf;
1561 nfs_fattr_init(&data->fattr);
1563 EXPORT_SYMBOL_GPL(nfs_init_commit);
1565 void nfs_retry_commit(struct list_head *page_list,
1566 struct pnfs_layout_segment *lseg,
1567 struct nfs_commit_info *cinfo)
1569 struct nfs_page *req;
1571 while (!list_empty(page_list)) {
1572 req = nfs_list_entry(page_list->next);
1573 nfs_list_remove_request(req);
1574 nfs_mark_request_commit(req, lseg, cinfo);
1575 if (!cinfo->dreq) {
1576 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
1577 dec_bdi_stat(page_file_mapping(req->wb_page)->backing_dev_info,
1578 BDI_RECLAIMABLE);
1580 nfs_unlock_and_release_request(req);
1583 EXPORT_SYMBOL_GPL(nfs_retry_commit);
1586 * Commit dirty pages
1588 static int
1589 nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1590 struct nfs_commit_info *cinfo)
1592 struct nfs_commit_data *data;
1594 data = nfs_commitdata_alloc();
1596 if (!data)
1597 goto out_bad;
1599 /* Set up the argument struct */
1600 nfs_init_commit(data, head, NULL, cinfo);
1601 atomic_inc(&cinfo->mds->rpcs_out);
1602 return nfs_initiate_commit(NFS_CLIENT(inode), data, data->mds_ops,
1603 how, 0);
1604 out_bad:
1605 nfs_retry_commit(head, NULL, cinfo);
1606 cinfo->completion_ops->error_cleanup(NFS_I(inode));
1607 return -ENOMEM;
1611 * COMMIT call returned
1613 static void nfs_commit_done(struct rpc_task *task, void *calldata)
1615 struct nfs_commit_data *data = calldata;
1617 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1618 task->tk_pid, task->tk_status);
1620 /* Call the NFS version-specific code */
1621 NFS_PROTO(data->inode)->commit_done(task, data);
1624 static void nfs_commit_release_pages(struct nfs_commit_data *data)
1626 struct nfs_page *req;
1627 int status = data->task.tk_status;
1628 struct nfs_commit_info cinfo;
1630 while (!list_empty(&data->pages)) {
1631 req = nfs_list_entry(data->pages.next);
1632 nfs_list_remove_request(req);
1633 nfs_clear_page_commit(req->wb_page);
1635 dprintk("NFS: commit (%s/%llu %d@%lld)",
1636 req->wb_context->dentry->d_sb->s_id,
1637 (unsigned long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1638 req->wb_bytes,
1639 (long long)req_offset(req));
1640 if (status < 0) {
1641 nfs_context_set_write_error(req->wb_context, status);
1642 nfs_inode_remove_request(req);
1643 dprintk(", error = %d\n", status);
1644 goto next;
1647 /* Okay, COMMIT succeeded, apparently. Check the verifier
1648 * returned by the server against all stored verfs. */
1649 if (!memcmp(&req->wb_verf, &data->verf.verifier, sizeof(req->wb_verf))) {
1650 /* We have a match */
1651 nfs_inode_remove_request(req);
1652 dprintk(" OK\n");
1653 goto next;
1655 /* We have a mismatch. Write the page again */
1656 dprintk(" mismatch\n");
1657 nfs_mark_request_dirty(req);
1658 set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1659 next:
1660 nfs_unlock_and_release_request(req);
1662 nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1663 if (atomic_dec_and_test(&cinfo.mds->rpcs_out))
1664 nfs_commit_clear_lock(NFS_I(data->inode));
1667 static void nfs_commit_release(void *calldata)
1669 struct nfs_commit_data *data = calldata;
1671 data->completion_ops->completion(data);
1672 nfs_commitdata_release(calldata);
1675 static const struct rpc_call_ops nfs_commit_ops = {
1676 .rpc_call_prepare = nfs_commit_prepare,
1677 .rpc_call_done = nfs_commit_done,
1678 .rpc_release = nfs_commit_release,
1681 static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1682 .completion = nfs_commit_release_pages,
1683 .error_cleanup = nfs_commit_clear_lock,
1686 int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1687 int how, struct nfs_commit_info *cinfo)
1689 int status;
1691 status = pnfs_commit_list(inode, head, how, cinfo);
1692 if (status == PNFS_NOT_ATTEMPTED)
1693 status = nfs_commit_list(inode, head, how, cinfo);
1694 return status;
1697 int nfs_commit_inode(struct inode *inode, int how)
1699 LIST_HEAD(head);
1700 struct nfs_commit_info cinfo;
1701 int may_wait = how & FLUSH_SYNC;
1702 int res;
1704 res = nfs_commit_set_lock(NFS_I(inode), may_wait);
1705 if (res <= 0)
1706 goto out_mark_dirty;
1707 nfs_init_cinfo_from_inode(&cinfo, inode);
1708 res = nfs_scan_commit(inode, &head, &cinfo);
1709 if (res) {
1710 int error;
1712 error = nfs_generic_commit_list(inode, &head, how, &cinfo);
1713 if (error < 0)
1714 return error;
1715 if (!may_wait)
1716 goto out_mark_dirty;
1717 error = wait_on_bit(&NFS_I(inode)->flags,
1718 NFS_INO_COMMIT,
1719 nfs_wait_bit_killable,
1720 TASK_KILLABLE);
1721 if (error < 0)
1722 return error;
1723 } else
1724 nfs_commit_clear_lock(NFS_I(inode));
1725 return res;
1726 /* Note: If we exit without ensuring that the commit is complete,
1727 * we must mark the inode as dirty. Otherwise, future calls to
1728 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1729 * that the data is on the disk.
1731 out_mark_dirty:
1732 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1733 return res;
1736 static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1738 struct nfs_inode *nfsi = NFS_I(inode);
1739 int flags = FLUSH_SYNC;
1740 int ret = 0;
1742 /* no commits means nothing needs to be done */
1743 if (!nfsi->commit_info.ncommit)
1744 return ret;
1746 if (wbc->sync_mode == WB_SYNC_NONE) {
1747 /* Don't commit yet if this is a non-blocking flush and there
1748 * are a lot of outstanding writes for this mapping.
1750 if (nfsi->commit_info.ncommit <= (nfsi->npages >> 1))
1751 goto out_mark_dirty;
1753 /* don't wait for the COMMIT response */
1754 flags = 0;
1757 ret = nfs_commit_inode(inode, flags);
1758 if (ret >= 0) {
1759 if (wbc->sync_mode == WB_SYNC_NONE) {
1760 if (ret < wbc->nr_to_write)
1761 wbc->nr_to_write -= ret;
1762 else
1763 wbc->nr_to_write = 0;
1765 return 0;
1767 out_mark_dirty:
1768 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1769 return ret;
1771 #else
1772 static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1774 return 0;
1776 #endif
1778 int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1780 return nfs_commit_unstable_pages(inode, wbc);
1782 EXPORT_SYMBOL_GPL(nfs_write_inode);
1785 * flush the inode to disk.
1787 int nfs_wb_all(struct inode *inode)
1789 struct writeback_control wbc = {
1790 .sync_mode = WB_SYNC_ALL,
1791 .nr_to_write = LONG_MAX,
1792 .range_start = 0,
1793 .range_end = LLONG_MAX,
1795 int ret;
1797 trace_nfs_writeback_inode_enter(inode);
1799 ret = sync_inode(inode, &wbc);
1801 trace_nfs_writeback_inode_exit(inode, ret);
1802 return ret;
1804 EXPORT_SYMBOL_GPL(nfs_wb_all);
1806 int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1808 struct nfs_page *req;
1809 int ret = 0;
1811 wait_on_page_writeback(page);
1813 /* blocking call to cancel all requests and join to a single (head)
1814 * request */
1815 req = nfs_lock_and_join_requests(page, false);
1817 if (IS_ERR(req)) {
1818 ret = PTR_ERR(req);
1819 } else if (req) {
1820 /* all requests from this page have been cancelled by
1821 * nfs_lock_and_join_requests, so just remove the head
1822 * request from the inode / page_private pointer and
1823 * release it */
1824 nfs_inode_remove_request(req);
1826 * In case nfs_inode_remove_request has marked the
1827 * page as being dirty
1829 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1830 nfs_unlock_and_release_request(req);
1833 return ret;
1837 * Write back all requests on one page - we do this before reading it.
1839 int nfs_wb_page(struct inode *inode, struct page *page)
1841 loff_t range_start = page_file_offset(page);
1842 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
1843 struct writeback_control wbc = {
1844 .sync_mode = WB_SYNC_ALL,
1845 .nr_to_write = 0,
1846 .range_start = range_start,
1847 .range_end = range_end,
1849 int ret;
1851 trace_nfs_writeback_page_enter(inode);
1853 for (;;) {
1854 wait_on_page_writeback(page);
1855 if (clear_page_dirty_for_io(page)) {
1856 ret = nfs_writepage_locked(page, &wbc);
1857 if (ret < 0)
1858 goto out_error;
1859 continue;
1861 ret = 0;
1862 if (!PagePrivate(page))
1863 break;
1864 ret = nfs_commit_inode(inode, FLUSH_SYNC);
1865 if (ret < 0)
1866 goto out_error;
1868 out_error:
1869 trace_nfs_writeback_page_exit(inode, ret);
1870 return ret;
1873 #ifdef CONFIG_MIGRATION
1874 int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
1875 struct page *page, enum migrate_mode mode)
1878 * If PagePrivate is set, then the page is currently associated with
1879 * an in-progress read or write request. Don't try to migrate it.
1881 * FIXME: we could do this in principle, but we'll need a way to ensure
1882 * that we can safely release the inode reference while holding
1883 * the page lock.
1885 if (PagePrivate(page))
1886 return -EBUSY;
1888 if (!nfs_fscache_release_page(page, GFP_KERNEL))
1889 return -EBUSY;
1891 return migrate_page(mapping, newpage, page, mode);
1893 #endif
1895 int __init nfs_init_writepagecache(void)
1897 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1898 sizeof(struct nfs_pgio_header),
1899 0, SLAB_HWCACHE_ALIGN,
1900 NULL);
1901 if (nfs_wdata_cachep == NULL)
1902 return -ENOMEM;
1904 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1905 nfs_wdata_cachep);
1906 if (nfs_wdata_mempool == NULL)
1907 goto out_destroy_write_cache;
1909 nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
1910 sizeof(struct nfs_commit_data),
1911 0, SLAB_HWCACHE_ALIGN,
1912 NULL);
1913 if (nfs_cdata_cachep == NULL)
1914 goto out_destroy_write_mempool;
1916 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1917 nfs_cdata_cachep);
1918 if (nfs_commit_mempool == NULL)
1919 goto out_destroy_commit_cache;
1922 * NFS congestion size, scale with available memory.
1924 * 64MB: 8192k
1925 * 128MB: 11585k
1926 * 256MB: 16384k
1927 * 512MB: 23170k
1928 * 1GB: 32768k
1929 * 2GB: 46340k
1930 * 4GB: 65536k
1931 * 8GB: 92681k
1932 * 16GB: 131072k
1934 * This allows larger machines to have larger/more transfers.
1935 * Limit the default to 256M
1937 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1938 if (nfs_congestion_kb > 256*1024)
1939 nfs_congestion_kb = 256*1024;
1941 return 0;
1943 out_destroy_commit_cache:
1944 kmem_cache_destroy(nfs_cdata_cachep);
1945 out_destroy_write_mempool:
1946 mempool_destroy(nfs_wdata_mempool);
1947 out_destroy_write_cache:
1948 kmem_cache_destroy(nfs_wdata_cachep);
1949 return -ENOMEM;
1952 void nfs_destroy_writepagecache(void)
1954 mempool_destroy(nfs_commit_mempool);
1955 kmem_cache_destroy(nfs_cdata_cachep);
1956 mempool_destroy(nfs_wdata_mempool);
1957 kmem_cache_destroy(nfs_wdata_cachep);
1960 static const struct nfs_rw_ops nfs_rw_write_ops = {
1961 .rw_mode = FMODE_WRITE,
1962 .rw_alloc_header = nfs_writehdr_alloc,
1963 .rw_free_header = nfs_writehdr_free,
1964 .rw_release = nfs_writeback_release_common,
1965 .rw_done = nfs_writeback_done,
1966 .rw_result = nfs_writeback_result,
1967 .rw_initiate = nfs_initiate_write,