4 * Write file data over NFS.
9 #include <linux/types.h>
10 #include <linux/slab.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>
24 #include <linux/freezer.h>
25 #include <linux/wait.h>
27 #include <linux/uaccess.h>
29 #include "delegation.h"
38 #define NFSDBG_FACILITY NFSDBG_PAGECACHE
40 #define MIN_POOL_WRITE (32)
41 #define MIN_POOL_COMMIT (4)
44 * Local function declarations
46 static void nfs_redirty_request(struct nfs_page *req);
47 static const struct rpc_call_ops nfs_commit_ops;
48 static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
49 static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
50 static const struct nfs_rw_ops nfs_rw_write_ops;
51 static void nfs_clear_request_commit(struct nfs_page *req);
52 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
54 static struct nfs_page *
55 nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
58 static struct kmem_cache *nfs_wdata_cachep;
59 static mempool_t *nfs_wdata_mempool;
60 static struct kmem_cache *nfs_cdata_cachep;
61 static mempool_t *nfs_commit_mempool;
63 struct nfs_commit_data *nfs_commitdata_alloc(void)
65 struct nfs_commit_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
68 memset(p, 0, sizeof(*p));
69 INIT_LIST_HEAD(&p->pages);
73 EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
75 void nfs_commit_free(struct nfs_commit_data *p)
77 mempool_free(p, nfs_commit_mempool);
79 EXPORT_SYMBOL_GPL(nfs_commit_free);
81 static struct nfs_pgio_header *nfs_writehdr_alloc(void)
83 struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
86 memset(p, 0, sizeof(*p));
90 static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
92 mempool_free(hdr, nfs_wdata_mempool);
95 static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
99 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
103 * nfs_page_find_head_request_locked - find head request associated with @page
105 * must be called while holding the inode lock.
107 * returns matching head request with reference held, or NULL if not found.
109 static struct nfs_page *
110 nfs_page_find_head_request_locked(struct nfs_inode *nfsi, struct page *page)
112 struct nfs_page *req = NULL;
114 if (PagePrivate(page))
115 req = (struct nfs_page *)page_private(page);
116 else if (unlikely(PageSwapCache(page)))
117 req = nfs_page_search_commits_for_head_request_locked(nfsi,
121 WARN_ON_ONCE(req->wb_head != req);
122 kref_get(&req->wb_kref);
129 * nfs_page_find_head_request - find head request associated with @page
131 * returns matching head request with reference held, or NULL if not found.
133 static struct nfs_page *nfs_page_find_head_request(struct page *page)
135 struct inode *inode = page_file_mapping(page)->host;
136 struct nfs_page *req = NULL;
138 spin_lock(&inode->i_lock);
139 req = nfs_page_find_head_request_locked(NFS_I(inode), page);
140 spin_unlock(&inode->i_lock);
144 /* Adjust the file length if we're writing beyond the end */
145 static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
147 struct inode *inode = page_file_mapping(page)->host;
151 spin_lock(&inode->i_lock);
152 i_size = i_size_read(inode);
153 end_index = (i_size - 1) >> PAGE_SHIFT;
154 if (i_size > 0 && page_index(page) < end_index)
156 end = page_file_offset(page) + ((loff_t)offset+count);
159 i_size_write(inode, end);
160 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
162 spin_unlock(&inode->i_lock);
165 /* A writeback failed: mark the page as bad, and invalidate the page cache */
166 static void nfs_set_pageerror(struct page *page)
168 nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page));
172 * nfs_page_group_search_locked
173 * @head - head request of page group
174 * @page_offset - offset into page
176 * Search page group with head @head to find a request that contains the
177 * page offset @page_offset.
179 * Returns a pointer to the first matching nfs request, or NULL if no
182 * Must be called with the page group lock held
184 static struct nfs_page *
185 nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
187 struct nfs_page *req;
189 WARN_ON_ONCE(head != head->wb_head);
190 WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_head->wb_flags));
194 if (page_offset >= req->wb_pgbase &&
195 page_offset < (req->wb_pgbase + req->wb_bytes))
198 req = req->wb_this_page;
199 } while (req != head);
205 * nfs_page_group_covers_page
206 * @head - head request of page group
208 * Return true if the page group with head @head covers the whole page,
209 * returns false otherwise
211 static bool nfs_page_group_covers_page(struct nfs_page *req)
213 struct nfs_page *tmp;
214 unsigned int pos = 0;
215 unsigned int len = nfs_page_length(req->wb_page);
217 nfs_page_group_lock(req, false);
220 tmp = nfs_page_group_search_locked(req->wb_head, pos);
222 /* no way this should happen */
223 WARN_ON_ONCE(tmp->wb_pgbase != pos);
224 pos += tmp->wb_bytes - (pos - tmp->wb_pgbase);
226 } while (tmp && pos < len);
228 nfs_page_group_unlock(req);
229 WARN_ON_ONCE(pos > len);
233 /* We can set the PG_uptodate flag if we see that a write request
234 * covers the full page.
236 static void nfs_mark_uptodate(struct nfs_page *req)
238 if (PageUptodate(req->wb_page))
240 if (!nfs_page_group_covers_page(req))
242 SetPageUptodate(req->wb_page);
245 static int wb_priority(struct writeback_control *wbc)
249 if (wbc->sync_mode == WB_SYNC_ALL)
250 ret = FLUSH_COND_STABLE;
255 * NFS congestion control
258 int nfs_congestion_kb;
260 #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
261 #define NFS_CONGESTION_OFF_THRESH \
262 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
264 static void nfs_set_page_writeback(struct page *page)
266 struct inode *inode = page_file_mapping(page)->host;
267 struct nfs_server *nfss = NFS_SERVER(inode);
268 int ret = test_set_page_writeback(page);
270 WARN_ON_ONCE(ret != 0);
272 if (atomic_long_inc_return(&nfss->writeback) >
273 NFS_CONGESTION_ON_THRESH)
274 set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
277 static void nfs_end_page_writeback(struct nfs_page *req)
279 struct inode *inode = page_file_mapping(req->wb_page)->host;
280 struct nfs_server *nfss = NFS_SERVER(inode);
282 if (!nfs_page_group_sync_on_bit(req, PG_WB_END))
285 end_page_writeback(req->wb_page);
286 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
287 clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
291 /* nfs_page_group_clear_bits
292 * @req - an nfs request
293 * clears all page group related bits from @req
296 nfs_page_group_clear_bits(struct nfs_page *req)
298 clear_bit(PG_TEARDOWN, &req->wb_flags);
299 clear_bit(PG_UNLOCKPAGE, &req->wb_flags);
300 clear_bit(PG_UPTODATE, &req->wb_flags);
301 clear_bit(PG_WB_END, &req->wb_flags);
302 clear_bit(PG_REMOVE, &req->wb_flags);
307 * nfs_unroll_locks_and_wait - unlock all newly locked reqs and wait on @req
309 * this is a helper function for nfs_lock_and_join_requests
311 * @inode - inode associated with request page group, must be holding inode lock
312 * @head - head request of page group, must be holding head lock
313 * @req - request that couldn't lock and needs to wait on the req bit lock
314 * @nonblock - if true, don't actually wait
316 * NOTE: this must be called holding page_group bit lock and inode spin lock
317 * and BOTH will be released before returning.
319 * returns 0 on success, < 0 on error.
322 nfs_unroll_locks_and_wait(struct inode *inode, struct nfs_page *head,
323 struct nfs_page *req, bool nonblock)
324 __releases(&inode->i_lock)
326 struct nfs_page *tmp;
329 /* relinquish all the locks successfully grabbed this run */
330 for (tmp = head ; tmp != req; tmp = tmp->wb_this_page)
331 nfs_unlock_request(tmp);
333 WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
335 /* grab a ref on the request that will be waited on */
336 kref_get(&req->wb_kref);
338 nfs_page_group_unlock(head);
339 spin_unlock(&inode->i_lock);
341 /* release ref from nfs_page_find_head_request_locked */
342 nfs_release_request(head);
345 ret = nfs_wait_on_request(req);
348 nfs_release_request(req);
354 * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
356 * @destroy_list - request list (using wb_this_page) terminated by @old_head
357 * @old_head - the old head of the list
359 * All subrequests must be locked and removed from all lists, so at this point
360 * they are only "active" in this function, and possibly in nfs_wait_on_request
361 * with a reference held by some other context.
364 nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
365 struct nfs_page *old_head)
367 while (destroy_list) {
368 struct nfs_page *subreq = destroy_list;
370 destroy_list = (subreq->wb_this_page == old_head) ?
371 NULL : subreq->wb_this_page;
373 WARN_ON_ONCE(old_head != subreq->wb_head);
375 /* make sure old group is not used */
376 subreq->wb_head = subreq;
377 subreq->wb_this_page = subreq;
379 /* subreq is now totally disconnected from page group or any
380 * write / commit lists. last chance to wake any waiters */
381 nfs_unlock_request(subreq);
383 if (!test_bit(PG_TEARDOWN, &subreq->wb_flags)) {
384 /* release ref on old head request */
385 nfs_release_request(old_head);
387 nfs_page_group_clear_bits(subreq);
389 /* release the PG_INODE_REF reference */
390 if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags))
391 nfs_release_request(subreq);
395 WARN_ON_ONCE(test_bit(PG_CLEAN, &subreq->wb_flags));
396 /* zombie requests have already released the last
397 * reference and were waiting on the rest of the
398 * group to complete. Since it's no longer part of a
399 * group, simply free the request */
400 nfs_page_group_clear_bits(subreq);
401 nfs_free_request(subreq);
407 * nfs_lock_and_join_requests - join all subreqs to the head req and return
408 * a locked reference, cancelling any pending
409 * operations for this page.
411 * @page - the page used to lookup the "page group" of nfs_page structures
412 * @nonblock - if true, don't block waiting for request locks
414 * This function joins all sub requests to the head request by first
415 * locking all requests in the group, cancelling any pending operations
416 * and finally updating the head request to cover the whole range covered by
417 * the (former) group. All subrequests are removed from any write or commit
418 * lists, unlinked from the group and destroyed.
420 * Returns a locked, referenced pointer to the head request - which after
421 * this call is guaranteed to be the only request associated with the page.
422 * Returns NULL if no requests are found for @page, or a ERR_PTR if an
423 * error was encountered.
425 static struct nfs_page *
426 nfs_lock_and_join_requests(struct page *page, bool nonblock)
428 struct inode *inode = page_file_mapping(page)->host;
429 struct nfs_page *head, *subreq;
430 struct nfs_page *destroy_list = NULL;
431 unsigned int total_bytes;
437 WARN_ON_ONCE(destroy_list);
439 spin_lock(&inode->i_lock);
442 * A reference is taken only on the head request which acts as a
443 * reference to the whole page group - the group will not be destroyed
444 * until the head reference is released.
446 head = nfs_page_find_head_request_locked(NFS_I(inode), page);
449 spin_unlock(&inode->i_lock);
453 /* holding inode lock, so always make a non-blocking call to try the
455 ret = nfs_page_group_lock(head, true);
457 spin_unlock(&inode->i_lock);
459 if (!nonblock && ret == -EAGAIN) {
460 nfs_page_group_lock_wait(head);
461 nfs_release_request(head);
465 nfs_release_request(head);
469 /* lock each request in the page group */
473 * Subrequests are always contiguous, non overlapping
474 * and in order - but may be repeated (mirrored writes).
476 if (subreq->wb_offset == (head->wb_offset + total_bytes)) {
477 /* keep track of how many bytes this group covers */
478 total_bytes += subreq->wb_bytes;
479 } else if (WARN_ON_ONCE(subreq->wb_offset < head->wb_offset ||
480 ((subreq->wb_offset + subreq->wb_bytes) >
481 (head->wb_offset + total_bytes)))) {
482 nfs_page_group_unlock(head);
483 spin_unlock(&inode->i_lock);
484 return ERR_PTR(-EIO);
487 if (!nfs_lock_request(subreq)) {
488 /* releases page group bit lock and
489 * inode spin lock and all references */
490 ret = nfs_unroll_locks_and_wait(inode, head,
499 subreq = subreq->wb_this_page;
500 } while (subreq != head);
502 /* Now that all requests are locked, make sure they aren't on any list.
503 * Commit list removal accounting is done after locks are dropped */
506 nfs_clear_request_commit(subreq);
507 subreq = subreq->wb_this_page;
508 } while (subreq != head);
510 /* unlink subrequests from head, destroy them later */
511 if (head->wb_this_page != head) {
512 /* destroy list will be terminated by head */
513 destroy_list = head->wb_this_page;
514 head->wb_this_page = head;
516 /* change head request to cover whole range that
517 * the former page group covered */
518 head->wb_bytes = total_bytes;
522 * prepare head request to be added to new pgio descriptor
524 nfs_page_group_clear_bits(head);
527 * some part of the group was still on the inode list - otherwise
528 * the group wouldn't be involved in async write.
529 * grab a reference for the head request, iff it needs one.
531 if (!test_and_set_bit(PG_INODE_REF, &head->wb_flags))
532 kref_get(&head->wb_kref);
534 nfs_page_group_unlock(head);
536 /* drop lock to clean uprequests on destroy list */
537 spin_unlock(&inode->i_lock);
539 nfs_destroy_unlinked_subrequests(destroy_list, head);
541 /* still holds ref on head from nfs_page_find_head_request_locked
542 * and still has lock on head from lock loop */
546 static void nfs_write_error_remove_page(struct nfs_page *req)
548 nfs_unlock_request(req);
549 nfs_end_page_writeback(req);
550 nfs_release_request(req);
551 generic_error_remove_page(page_file_mapping(req->wb_page),
556 * Find an associated nfs write request, and prepare to flush it out
557 * May return an error if the user signalled nfs_wait_on_request().
559 static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
560 struct page *page, bool nonblock,
563 struct nfs_page *req;
566 req = nfs_lock_and_join_requests(page, nonblock);
573 nfs_set_page_writeback(page);
574 WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
577 if (!nfs_pageio_add_request(pgio, req)) {
578 ret = pgio->pg_error;
580 * Remove the problematic req upon fatal errors
581 * in launder case, while other dirty pages can
582 * still be around until they get flushed.
584 if (nfs_error_is_fatal(ret)) {
585 nfs_context_set_write_error(req->wb_context, ret);
587 nfs_write_error_remove_page(req);
591 nfs_redirty_request(req);
594 nfs_add_stats(page_file_mapping(page)->host,
595 NFSIOS_WRITEPAGES, 1);
600 static int nfs_do_writepage(struct page *page, struct writeback_control *wbc,
601 struct nfs_pageio_descriptor *pgio, bool launder)
605 nfs_pageio_cond_complete(pgio, page_index(page));
606 ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE,
608 if (ret == -EAGAIN) {
609 redirty_page_for_writepage(wbc, page);
616 * Write an mmapped page to the server.
618 static int nfs_writepage_locked(struct page *page,
619 struct writeback_control *wbc,
622 struct nfs_pageio_descriptor pgio;
623 struct inode *inode = page_file_mapping(page)->host;
626 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
627 nfs_pageio_init_write(&pgio, inode, 0,
628 false, &nfs_async_write_completion_ops);
629 err = nfs_do_writepage(page, wbc, &pgio, launder);
630 nfs_pageio_complete(&pgio);
633 if (pgio.pg_error < 0)
634 return pgio.pg_error;
638 int nfs_writepage(struct page *page, struct writeback_control *wbc)
642 ret = nfs_writepage_locked(page, wbc, false);
647 static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
651 ret = nfs_do_writepage(page, wbc, data, false);
656 int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
658 struct inode *inode = mapping->host;
659 struct nfs_pageio_descriptor pgio;
662 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
664 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
665 &nfs_async_write_completion_ops);
666 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
667 nfs_pageio_complete(&pgio);
680 * Insert a write request into an inode
682 static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
684 struct nfs_inode *nfsi = NFS_I(inode);
686 WARN_ON_ONCE(req->wb_this_page != req);
688 /* Lock the request! */
689 nfs_lock_request(req);
691 spin_lock(&inode->i_lock);
692 if (!nfsi->nrequests &&
693 NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
696 * Swap-space should not get truncated. Hence no need to plug the race
697 * with invalidate/truncate.
699 if (likely(!PageSwapCache(req->wb_page))) {
700 set_bit(PG_MAPPED, &req->wb_flags);
701 SetPagePrivate(req->wb_page);
702 set_page_private(req->wb_page, (unsigned long)req);
705 /* this a head request for a page group - mark it as having an
706 * extra reference so sub groups can follow suit.
707 * This flag also informs pgio layer when to bump nrequests when
708 * adding subrequests. */
709 WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
710 kref_get(&req->wb_kref);
711 spin_unlock(&inode->i_lock);
715 * Remove a write request from an inode
717 static void nfs_inode_remove_request(struct nfs_page *req)
719 struct inode *inode = d_inode(req->wb_context->dentry);
720 struct nfs_inode *nfsi = NFS_I(inode);
721 struct nfs_page *head;
723 if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
726 spin_lock(&inode->i_lock);
727 if (likely(head->wb_page && !PageSwapCache(head->wb_page))) {
728 set_page_private(head->wb_page, 0);
729 ClearPagePrivate(head->wb_page);
730 clear_bit(PG_MAPPED, &head->wb_flags);
733 spin_unlock(&inode->i_lock);
735 spin_lock(&inode->i_lock);
737 spin_unlock(&inode->i_lock);
740 if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
741 nfs_release_request(req);
745 nfs_mark_request_dirty(struct nfs_page *req)
748 __set_page_dirty_nobuffers(req->wb_page);
752 * nfs_page_search_commits_for_head_request_locked
754 * Search through commit lists on @inode for the head request for @page.
755 * Must be called while holding the inode (which is cinfo) lock.
757 * Returns the head request if found, or NULL if not found.
759 static struct nfs_page *
760 nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
763 struct nfs_page *freq, *t;
764 struct nfs_commit_info cinfo;
765 struct inode *inode = &nfsi->vfs_inode;
767 nfs_init_cinfo_from_inode(&cinfo, inode);
769 /* search through pnfs commit lists */
770 freq = pnfs_search_commit_reqs(inode, &cinfo, page);
772 return freq->wb_head;
774 /* Linearly search the commit list for the correct request */
775 list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
776 if (freq->wb_page == page)
777 return freq->wb_head;
784 * nfs_request_add_commit_list_locked - add request to a commit list
785 * @req: pointer to a struct nfs_page
786 * @dst: commit list head
787 * @cinfo: holds list lock and accounting info
789 * This sets the PG_CLEAN bit, updates the cinfo count of
790 * number of outstanding requests requiring a commit as well as
793 * The caller must hold cinfo->inode->i_lock, and the nfs_page lock.
796 nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
797 struct nfs_commit_info *cinfo)
799 set_bit(PG_CLEAN, &req->wb_flags);
800 nfs_list_add_request(req, dst);
801 cinfo->mds->ncommit++;
803 EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
806 * nfs_request_add_commit_list - add request to a commit list
807 * @req: pointer to a struct nfs_page
808 * @dst: commit list head
809 * @cinfo: holds list lock and accounting info
811 * This sets the PG_CLEAN bit, updates the cinfo count of
812 * number of outstanding requests requiring a commit as well as
815 * The caller must _not_ hold the cinfo->lock, but must be
816 * holding the nfs_page lock.
819 nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
821 spin_lock(&cinfo->inode->i_lock);
822 nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
823 spin_unlock(&cinfo->inode->i_lock);
825 nfs_mark_page_unstable(req->wb_page, cinfo);
827 EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
830 * nfs_request_remove_commit_list - Remove request from a commit list
831 * @req: pointer to a nfs_page
832 * @cinfo: holds list lock and accounting info
834 * This clears the PG_CLEAN bit, and updates the cinfo's count of
835 * number of outstanding requests requiring a commit
836 * It does not update the MM page stats.
838 * The caller _must_ hold the cinfo->lock and the nfs_page lock.
841 nfs_request_remove_commit_list(struct nfs_page *req,
842 struct nfs_commit_info *cinfo)
844 if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
846 nfs_list_remove_request(req);
847 cinfo->mds->ncommit--;
849 EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
851 static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
854 cinfo->inode = inode;
855 cinfo->mds = &NFS_I(inode)->commit_info;
856 cinfo->ds = pnfs_get_ds_info(inode);
858 cinfo->completion_ops = &nfs_commit_completion_ops;
861 void nfs_init_cinfo(struct nfs_commit_info *cinfo,
863 struct nfs_direct_req *dreq)
866 nfs_init_cinfo_from_dreq(cinfo, dreq);
868 nfs_init_cinfo_from_inode(cinfo, inode);
870 EXPORT_SYMBOL_GPL(nfs_init_cinfo);
873 * Add a request to the inode's commit list.
876 nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
877 struct nfs_commit_info *cinfo, u32 ds_commit_idx)
879 if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
881 nfs_request_add_commit_list(req, cinfo);
885 nfs_clear_page_commit(struct page *page)
887 dec_node_page_state(page, NR_UNSTABLE_NFS);
888 dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb,
892 /* Called holding inode (/cinfo) lock */
894 nfs_clear_request_commit(struct nfs_page *req)
896 if (test_bit(PG_CLEAN, &req->wb_flags)) {
897 struct inode *inode = d_inode(req->wb_context->dentry);
898 struct nfs_commit_info cinfo;
900 nfs_init_cinfo_from_inode(&cinfo, inode);
901 if (!pnfs_clear_request_commit(req, &cinfo)) {
902 nfs_request_remove_commit_list(req, &cinfo);
904 nfs_clear_page_commit(req->wb_page);
908 int nfs_write_need_commit(struct nfs_pgio_header *hdr)
910 if (hdr->verf.committed == NFS_DATA_SYNC)
911 return hdr->lseg == NULL;
912 return hdr->verf.committed != NFS_FILE_SYNC;
915 static void nfs_write_completion(struct nfs_pgio_header *hdr)
917 struct nfs_commit_info cinfo;
918 unsigned long bytes = 0;
920 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
922 nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
923 while (!list_empty(&hdr->pages)) {
924 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
926 bytes += req->wb_bytes;
927 nfs_list_remove_request(req);
928 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
929 (hdr->good_bytes < bytes)) {
930 nfs_set_pageerror(req->wb_page);
931 nfs_context_set_write_error(req->wb_context, hdr->error);
934 if (nfs_write_need_commit(hdr)) {
935 memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
936 nfs_mark_request_commit(req, hdr->lseg, &cinfo,
937 hdr->pgio_mirror_idx);
941 nfs_inode_remove_request(req);
943 nfs_unlock_request(req);
944 nfs_end_page_writeback(req);
945 nfs_release_request(req);
952 nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
954 return cinfo->mds->ncommit;
957 /* cinfo->inode->i_lock held by caller */
959 nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
960 struct nfs_commit_info *cinfo, int max)
962 struct nfs_page *req, *tmp;
965 list_for_each_entry_safe(req, tmp, src, wb_list) {
966 if (!nfs_lock_request(req))
968 kref_get(&req->wb_kref);
969 if (cond_resched_lock(&cinfo->inode->i_lock))
970 list_safe_reset_next(req, tmp, wb_list);
971 nfs_request_remove_commit_list(req, cinfo);
972 nfs_list_add_request(req, dst);
974 if ((ret == max) && !cinfo->dreq)
981 * nfs_scan_commit - Scan an inode for commit requests
982 * @inode: NFS inode to scan
983 * @dst: mds destination list
984 * @cinfo: mds and ds lists of reqs ready to commit
986 * Moves requests from the inode's 'commit' request list.
987 * The requests are *not* checked to ensure that they form a contiguous set.
990 nfs_scan_commit(struct inode *inode, struct list_head *dst,
991 struct nfs_commit_info *cinfo)
995 spin_lock(&cinfo->inode->i_lock);
996 if (cinfo->mds->ncommit > 0) {
997 const int max = INT_MAX;
999 ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1001 ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
1003 spin_unlock(&cinfo->inode->i_lock);
1008 * Search for an existing write request, and attempt to update
1009 * it to reflect a new dirty region on a given page.
1011 * If the attempt fails, then the existing request is flushed out
1014 static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
1016 unsigned int offset,
1019 struct nfs_page *req;
1024 if (!PagePrivate(page))
1027 end = offset + bytes;
1028 spin_lock(&inode->i_lock);
1031 req = nfs_page_find_head_request_locked(NFS_I(inode), page);
1035 /* should be handled by nfs_flush_incompatible */
1036 WARN_ON_ONCE(req->wb_head != req);
1037 WARN_ON_ONCE(req->wb_this_page != req);
1039 rqend = req->wb_offset + req->wb_bytes;
1041 * Tell the caller to flush out the request if
1042 * the offsets are non-contiguous.
1043 * Note: nfs_flush_incompatible() will already
1044 * have flushed out requests having wrong owners.
1047 || end < req->wb_offset)
1050 if (nfs_lock_request(req))
1053 /* The request is locked, so wait and then retry */
1054 spin_unlock(&inode->i_lock);
1055 error = nfs_wait_on_request(req);
1056 nfs_release_request(req);
1059 spin_lock(&inode->i_lock);
1062 /* Okay, the request matches. Update the region */
1063 if (offset < req->wb_offset) {
1064 req->wb_offset = offset;
1065 req->wb_pgbase = offset;
1068 req->wb_bytes = end - req->wb_offset;
1070 req->wb_bytes = rqend - req->wb_offset;
1073 nfs_clear_request_commit(req);
1074 spin_unlock(&inode->i_lock);
1077 spin_unlock(&inode->i_lock);
1078 nfs_release_request(req);
1079 error = nfs_wb_page(inode, page);
1081 return ERR_PTR(error);
1085 * Try to update an existing write request, or create one if there is none.
1087 * Note: Should always be called with the Page Lock held to prevent races
1088 * if we have to add a new request. Also assumes that the caller has
1089 * already called nfs_flush_incompatible() if necessary.
1091 static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1092 struct page *page, unsigned int offset, unsigned int bytes)
1094 struct inode *inode = page_file_mapping(page)->host;
1095 struct nfs_page *req;
1097 req = nfs_try_to_update_request(inode, page, offset, bytes);
1100 req = nfs_create_request(ctx, page, NULL, offset, bytes);
1103 nfs_inode_add_request(inode, req);
1108 static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1109 unsigned int offset, unsigned int count)
1111 struct nfs_page *req;
1113 req = nfs_setup_write_request(ctx, page, offset, count);
1115 return PTR_ERR(req);
1116 /* Update file length */
1117 nfs_grow_file(page, offset, count);
1118 nfs_mark_uptodate(req);
1119 nfs_mark_request_dirty(req);
1120 nfs_unlock_and_release_request(req);
1124 int nfs_flush_incompatible(struct file *file, struct page *page)
1126 struct nfs_open_context *ctx = nfs_file_open_context(file);
1127 struct nfs_lock_context *l_ctx;
1128 struct file_lock_context *flctx = file_inode(file)->i_flctx;
1129 struct nfs_page *req;
1130 int do_flush, status;
1132 * Look for a request corresponding to this page. If there
1133 * is one, and it belongs to another file, we flush it out
1134 * before we try to copy anything into the page. Do this
1135 * due to the lack of an ACCESS-type call in NFSv2.
1136 * Also do the same if we find a request from an existing
1140 req = nfs_page_find_head_request(page);
1143 l_ctx = req->wb_lock_context;
1144 do_flush = req->wb_page != page ||
1145 !nfs_match_open_context(req->wb_context, ctx);
1146 /* for now, flush if more than 1 request in page_group */
1147 do_flush |= req->wb_this_page != req;
1148 if (l_ctx && flctx &&
1149 !(list_empty_careful(&flctx->flc_posix) &&
1150 list_empty_careful(&flctx->flc_flock))) {
1151 do_flush |= l_ctx->lockowner != current->files;
1153 nfs_release_request(req);
1156 status = nfs_wb_page(page_file_mapping(page)->host, page);
1157 } while (status == 0);
1162 * Avoid buffered writes when a open context credential's key would
1165 * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1167 * Return 0 and set a credential flag which triggers the inode to flush
1168 * and performs NFS_FILE_SYNC writes if the key will expired within
1169 * RPC_KEY_EXPIRE_TIMEO.
1172 nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1174 struct nfs_open_context *ctx = nfs_file_open_context(filp);
1175 struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1177 return rpcauth_key_timeout_notify(auth, ctx->cred);
1181 * Test if the open context credential key is marked to expire soon.
1183 bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
1185 struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1187 return rpcauth_cred_key_to_expire(auth, ctx->cred);
1191 * If the page cache is marked as unsafe or invalid, then we can't rely on
1192 * the PageUptodate() flag. In this case, we will need to turn off
1193 * write optimisations that depend on the page contents being correct.
1195 static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
1197 struct nfs_inode *nfsi = NFS_I(inode);
1199 if (nfs_have_delegated_attributes(inode))
1201 if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1204 if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
1207 if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1209 return PageUptodate(page) != 0;
1213 is_whole_file_wrlock(struct file_lock *fl)
1215 return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
1216 fl->fl_type == F_WRLCK;
1219 /* If we know the page is up to date, and we're not using byte range locks (or
1220 * if we have the whole file locked for writing), it may be more efficient to
1221 * extend the write to cover the entire page in order to avoid fragmentation
1224 * If the file is opened for synchronous writes then we can just skip the rest
1227 static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1230 struct file_lock_context *flctx = inode->i_flctx;
1231 struct file_lock *fl;
1233 if (file->f_flags & O_DSYNC)
1235 if (!nfs_write_pageuptodate(page, inode))
1237 if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1239 if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1240 list_empty_careful(&flctx->flc_posix)))
1243 /* Check to see if there are whole file write locks */
1245 spin_lock(&flctx->flc_lock);
1246 if (!list_empty(&flctx->flc_posix)) {
1247 fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1249 if (is_whole_file_wrlock(fl))
1251 } else if (!list_empty(&flctx->flc_flock)) {
1252 fl = list_first_entry(&flctx->flc_flock, struct file_lock,
1254 if (fl->fl_type == F_WRLCK)
1257 spin_unlock(&flctx->flc_lock);
1262 * Update and possibly write a cached page of an NFS file.
1264 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
1265 * things with a page scheduled for an RPC call (e.g. invalidate it).
1267 int nfs_updatepage(struct file *file, struct page *page,
1268 unsigned int offset, unsigned int count)
1270 struct nfs_open_context *ctx = nfs_file_open_context(file);
1271 struct inode *inode = page_file_mapping(page)->host;
1274 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
1276 dprintk("NFS: nfs_updatepage(%pD2 %d@%lld)\n",
1277 file, count, (long long)(page_file_offset(page) + offset));
1282 if (nfs_can_extend_write(file, page, inode)) {
1283 count = max(count + offset, nfs_page_length(page));
1287 status = nfs_writepage_setup(ctx, page, offset, count);
1289 nfs_set_pageerror(page);
1291 __set_page_dirty_nobuffers(page);
1293 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
1294 status, (long long)i_size_read(inode));
1298 static int flush_task_priority(int how)
1300 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
1302 return RPC_PRIORITY_HIGH;
1304 return RPC_PRIORITY_LOW;
1306 return RPC_PRIORITY_NORMAL;
1309 static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1310 struct rpc_message *msg,
1311 const struct nfs_rpc_ops *rpc_ops,
1312 struct rpc_task_setup *task_setup_data, int how)
1314 int priority = flush_task_priority(how);
1316 task_setup_data->priority = priority;
1317 rpc_ops->write_setup(hdr, msg);
1319 nfs4_state_protect_write(NFS_SERVER(hdr->inode)->nfs_client,
1320 &task_setup_data->rpc_client, msg, hdr);
1323 /* If a nfs_flush_* function fails, it should remove reqs from @head and
1324 * call this on each, which will prepare them to be retried on next
1325 * writeback using standard nfs.
1327 static void nfs_redirty_request(struct nfs_page *req)
1329 nfs_mark_request_dirty(req);
1330 set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1331 nfs_unlock_request(req);
1332 nfs_end_page_writeback(req);
1333 nfs_release_request(req);
1336 static void nfs_async_write_error(struct list_head *head)
1338 struct nfs_page *req;
1340 while (!list_empty(head)) {
1341 req = nfs_list_entry(head->next);
1342 nfs_list_remove_request(req);
1343 nfs_redirty_request(req);
1347 static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1349 nfs_async_write_error(&hdr->pages);
1352 static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1353 .error_cleanup = nfs_async_write_error,
1354 .completion = nfs_write_completion,
1355 .reschedule_io = nfs_async_write_reschedule_io,
1358 void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1359 struct inode *inode, int ioflags, bool force_mds,
1360 const struct nfs_pgio_completion_ops *compl_ops)
1362 struct nfs_server *server = NFS_SERVER(inode);
1363 const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1365 #ifdef CONFIG_NFS_V4_1
1366 if (server->pnfs_curr_ld && !force_mds)
1367 pg_ops = server->pnfs_curr_ld->pg_write_ops;
1369 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
1370 server->wsize, ioflags);
1372 EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
1374 void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1376 struct nfs_pgio_mirror *mirror;
1378 if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
1379 pgio->pg_ops->pg_cleanup(pgio);
1381 pgio->pg_ops = &nfs_pgio_rw_ops;
1383 nfs_pageio_stop_mirroring(pgio);
1385 mirror = &pgio->pg_mirrors[0];
1386 mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1388 EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1391 void nfs_commit_prepare(struct rpc_task *task, void *calldata)
1393 struct nfs_commit_data *data = calldata;
1395 NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
1399 * Special version of should_remove_suid() that ignores capabilities.
1401 static int nfs_should_remove_suid(const struct inode *inode)
1403 umode_t mode = inode->i_mode;
1406 /* suid always must be killed */
1407 if (unlikely(mode & S_ISUID))
1408 kill = ATTR_KILL_SUID;
1411 * sgid without any exec bits is just a mandatory locking mark; leave
1412 * it alone. If some exec bits are set, it's a real sgid; kill it.
1414 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1415 kill |= ATTR_KILL_SGID;
1417 if (unlikely(kill && S_ISREG(mode)))
1423 static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1424 struct nfs_fattr *fattr)
1426 struct nfs_pgio_args *argp = &hdr->args;
1427 struct nfs_pgio_res *resp = &hdr->res;
1428 u64 size = argp->offset + resp->count;
1430 if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
1432 if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
1433 fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
1436 if (size != fattr->size)
1438 /* Set attribute barrier */
1439 nfs_fattr_set_barrier(fattr);
1440 /* ...and update size */
1441 fattr->valid |= NFS_ATTR_FATTR_SIZE;
1444 void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1446 struct nfs_fattr *fattr = &hdr->fattr;
1447 struct inode *inode = hdr->inode;
1449 spin_lock(&inode->i_lock);
1450 nfs_writeback_check_extend(hdr, fattr);
1451 nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1452 spin_unlock(&inode->i_lock);
1454 EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1457 * This function is called when the WRITE call is complete.
1459 static int nfs_writeback_done(struct rpc_task *task,
1460 struct nfs_pgio_header *hdr,
1461 struct inode *inode)
1466 * ->write_done will attempt to use post-op attributes to detect
1467 * conflicting writes by other clients. A strict interpretation
1468 * of close-to-open would allow us to continue caching even if
1469 * another writer had changed the file, but some applications
1470 * depend on tighter cache coherency when writing.
1472 status = NFS_PROTO(inode)->write_done(task, hdr);
1475 nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
1477 if (hdr->res.verf->committed < hdr->args.stable &&
1478 task->tk_status >= 0) {
1479 /* We tried a write call, but the server did not
1480 * commit data to stable storage even though we
1482 * Note: There is a known bug in Tru64 < 5.0 in which
1483 * the server reports NFS_DATA_SYNC, but performs
1484 * NFS_FILE_SYNC. We therefore implement this checking
1485 * as a dprintk() in order to avoid filling syslog.
1487 static unsigned long complain;
1489 /* Note this will print the MDS for a DS write */
1490 if (time_before(complain, jiffies)) {
1491 dprintk("NFS: faulty NFS server %s:"
1492 " (committed = %d) != (stable = %d)\n",
1493 NFS_SERVER(inode)->nfs_client->cl_hostname,
1494 hdr->res.verf->committed, hdr->args.stable);
1495 complain = jiffies + 300 * HZ;
1499 /* Deal with the suid/sgid bit corner case */
1500 if (nfs_should_remove_suid(inode))
1501 nfs_mark_for_revalidate(inode);
1506 * This function is called when the WRITE call is complete.
1508 static void nfs_writeback_result(struct rpc_task *task,
1509 struct nfs_pgio_header *hdr)
1511 struct nfs_pgio_args *argp = &hdr->args;
1512 struct nfs_pgio_res *resp = &hdr->res;
1514 if (resp->count < argp->count) {
1515 static unsigned long complain;
1517 /* This a short write! */
1518 nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
1520 /* Has the server at least made some progress? */
1521 if (resp->count == 0) {
1522 if (time_before(complain, jiffies)) {
1524 "NFS: Server wrote zero bytes, expected %u.\n",
1526 complain = jiffies + 300 * HZ;
1528 nfs_set_pgio_error(hdr, -EIO, argp->offset);
1529 task->tk_status = -EIO;
1533 /* For non rpc-based layout drivers, retry-through-MDS */
1534 if (!task->tk_ops) {
1535 hdr->pnfs_error = -EAGAIN;
1539 /* Was this an NFSv2 write or an NFSv3 stable write? */
1540 if (resp->verf->committed != NFS_UNSTABLE) {
1541 /* Resend from where the server left off */
1542 hdr->mds_offset += resp->count;
1543 argp->offset += resp->count;
1544 argp->pgbase += resp->count;
1545 argp->count -= resp->count;
1547 /* Resend as a stable write in order to avoid
1548 * headaches in the case of a server crash.
1550 argp->stable = NFS_FILE_SYNC;
1552 rpc_restart_call_prepare(task);
1556 static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
1558 return wait_on_atomic_t(&cinfo->rpcs_out,
1559 nfs_wait_atomic_killable, TASK_KILLABLE);
1562 static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1564 atomic_inc(&cinfo->rpcs_out);
1567 static void nfs_commit_end(struct nfs_mds_commit_info *cinfo)
1569 if (atomic_dec_and_test(&cinfo->rpcs_out))
1570 wake_up_atomic_t(&cinfo->rpcs_out);
1573 void nfs_commitdata_release(struct nfs_commit_data *data)
1575 put_nfs_open_context(data->context);
1576 nfs_commit_free(data);
1578 EXPORT_SYMBOL_GPL(nfs_commitdata_release);
1580 int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1581 const struct nfs_rpc_ops *nfs_ops,
1582 const struct rpc_call_ops *call_ops,
1585 struct rpc_task *task;
1586 int priority = flush_task_priority(how);
1587 struct rpc_message msg = {
1588 .rpc_argp = &data->args,
1589 .rpc_resp = &data->res,
1590 .rpc_cred = data->cred,
1592 struct rpc_task_setup task_setup_data = {
1593 .task = &data->task,
1595 .rpc_message = &msg,
1596 .callback_ops = call_ops,
1597 .callback_data = data,
1598 .workqueue = nfsiod_workqueue,
1599 .flags = RPC_TASK_ASYNC | flags,
1600 .priority = priority,
1602 /* Set up the initial task struct. */
1603 nfs_ops->commit_setup(data, &msg);
1605 dprintk("NFS: initiated commit call\n");
1607 nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client,
1608 NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg);
1610 task = rpc_run_task(&task_setup_data);
1612 return PTR_ERR(task);
1613 if (how & FLUSH_SYNC)
1614 rpc_wait_for_completion_task(task);
1618 EXPORT_SYMBOL_GPL(nfs_initiate_commit);
1620 static loff_t nfs_get_lwb(struct list_head *head)
1623 struct nfs_page *req;
1625 list_for_each_entry(req, head, wb_list)
1626 if (lwb < (req_offset(req) + req->wb_bytes))
1627 lwb = req_offset(req) + req->wb_bytes;
1633 * Set up the argument/result storage required for the RPC call.
1635 void nfs_init_commit(struct nfs_commit_data *data,
1636 struct list_head *head,
1637 struct pnfs_layout_segment *lseg,
1638 struct nfs_commit_info *cinfo)
1640 struct nfs_page *first = nfs_list_entry(head->next);
1641 struct inode *inode = d_inode(first->wb_context->dentry);
1643 /* Set up the RPC argument and reply structs
1644 * NB: take care not to mess about with data->commit et al. */
1646 list_splice_init(head, &data->pages);
1648 data->inode = inode;
1649 data->cred = first->wb_context->cred;
1650 data->lseg = lseg; /* reference transferred */
1651 /* only set lwb for pnfs commit */
1653 data->lwb = nfs_get_lwb(&data->pages);
1654 data->mds_ops = &nfs_commit_ops;
1655 data->completion_ops = cinfo->completion_ops;
1656 data->dreq = cinfo->dreq;
1658 data->args.fh = NFS_FH(data->inode);
1659 /* Note: we always request a commit of the entire inode */
1660 data->args.offset = 0;
1661 data->args.count = 0;
1662 data->context = get_nfs_open_context(first->wb_context);
1663 data->res.fattr = &data->fattr;
1664 data->res.verf = &data->verf;
1665 nfs_fattr_init(&data->fattr);
1667 EXPORT_SYMBOL_GPL(nfs_init_commit);
1669 void nfs_retry_commit(struct list_head *page_list,
1670 struct pnfs_layout_segment *lseg,
1671 struct nfs_commit_info *cinfo,
1674 struct nfs_page *req;
1676 while (!list_empty(page_list)) {
1677 req = nfs_list_entry(page_list->next);
1678 nfs_list_remove_request(req);
1679 nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
1681 nfs_clear_page_commit(req->wb_page);
1682 nfs_unlock_and_release_request(req);
1685 EXPORT_SYMBOL_GPL(nfs_retry_commit);
1688 nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1689 struct nfs_page *req)
1691 __set_page_dirty_nobuffers(req->wb_page);
1695 * Commit dirty pages
1698 nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1699 struct nfs_commit_info *cinfo)
1701 struct nfs_commit_data *data;
1703 /* another commit raced with us */
1704 if (list_empty(head))
1707 data = nfs_commitdata_alloc();
1712 /* Set up the argument struct */
1713 nfs_init_commit(data, head, NULL, cinfo);
1714 atomic_inc(&cinfo->mds->rpcs_out);
1715 return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
1716 data->mds_ops, how, 0);
1718 nfs_retry_commit(head, NULL, cinfo, 0);
1722 int nfs_commit_file(struct file *file, struct nfs_write_verifier *verf)
1724 struct inode *inode = file_inode(file);
1725 struct nfs_open_context *open;
1726 struct nfs_commit_info cinfo;
1727 struct nfs_page *req;
1730 open = get_nfs_open_context(nfs_file_open_context(file));
1731 req = nfs_create_request(open, NULL, NULL, 0, i_size_read(inode));
1737 nfs_init_cinfo_from_inode(&cinfo, inode);
1739 memcpy(&req->wb_verf, verf, sizeof(struct nfs_write_verifier));
1740 nfs_request_add_commit_list(req, &cinfo);
1741 ret = nfs_commit_inode(inode, FLUSH_SYNC);
1745 nfs_free_request(req);
1747 put_nfs_open_context(open);
1750 EXPORT_SYMBOL_GPL(nfs_commit_file);
1753 * COMMIT call returned
1755 static void nfs_commit_done(struct rpc_task *task, void *calldata)
1757 struct nfs_commit_data *data = calldata;
1759 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1760 task->tk_pid, task->tk_status);
1762 /* Call the NFS version-specific code */
1763 NFS_PROTO(data->inode)->commit_done(task, data);
1766 static void nfs_commit_release_pages(struct nfs_commit_data *data)
1768 struct nfs_page *req;
1769 int status = data->task.tk_status;
1770 struct nfs_commit_info cinfo;
1771 struct nfs_server *nfss;
1773 while (!list_empty(&data->pages)) {
1774 req = nfs_list_entry(data->pages.next);
1775 nfs_list_remove_request(req);
1777 nfs_clear_page_commit(req->wb_page);
1779 dprintk("NFS: commit (%s/%llu %d@%lld)",
1780 req->wb_context->dentry->d_sb->s_id,
1781 (unsigned long long)NFS_FILEID(d_inode(req->wb_context->dentry)),
1783 (long long)req_offset(req));
1785 nfs_context_set_write_error(req->wb_context, status);
1787 nfs_inode_remove_request(req);
1788 dprintk_cont(", error = %d\n", status);
1792 /* Okay, COMMIT succeeded, apparently. Check the verifier
1793 * returned by the server against all stored verfs. */
1794 if (!nfs_write_verifier_cmp(&req->wb_verf, &data->verf.verifier)) {
1795 /* We have a match */
1797 nfs_inode_remove_request(req);
1798 dprintk_cont(" OK\n");
1801 /* We have a mismatch. Write the page again */
1802 dprintk_cont(" mismatch\n");
1803 nfs_mark_request_dirty(req);
1804 set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1806 nfs_unlock_and_release_request(req);
1808 nfss = NFS_SERVER(data->inode);
1809 if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
1810 clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC);
1812 nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1813 nfs_commit_end(cinfo.mds);
1816 static void nfs_commit_release(void *calldata)
1818 struct nfs_commit_data *data = calldata;
1820 data->completion_ops->completion(data);
1821 nfs_commitdata_release(calldata);
1824 static const struct rpc_call_ops nfs_commit_ops = {
1825 .rpc_call_prepare = nfs_commit_prepare,
1826 .rpc_call_done = nfs_commit_done,
1827 .rpc_release = nfs_commit_release,
1830 static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1831 .completion = nfs_commit_release_pages,
1832 .resched_write = nfs_commit_resched_write,
1835 int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1836 int how, struct nfs_commit_info *cinfo)
1840 status = pnfs_commit_list(inode, head, how, cinfo);
1841 if (status == PNFS_NOT_ATTEMPTED)
1842 status = nfs_commit_list(inode, head, how, cinfo);
1846 int nfs_commit_inode(struct inode *inode, int how)
1849 struct nfs_commit_info cinfo;
1850 int may_wait = how & FLUSH_SYNC;
1854 nfs_init_cinfo_from_inode(&cinfo, inode);
1855 nfs_commit_begin(cinfo.mds);
1856 res = nfs_scan_commit(inode, &head, &cinfo);
1858 error = nfs_generic_commit_list(inode, &head, how, &cinfo);
1859 nfs_commit_end(cinfo.mds);
1863 goto out_mark_dirty;
1864 error = wait_on_commit(cinfo.mds);
1870 /* Note: If we exit without ensuring that the commit is complete,
1871 * we must mark the inode as dirty. Otherwise, future calls to
1872 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1873 * that the data is on the disk.
1876 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1879 EXPORT_SYMBOL_GPL(nfs_commit_inode);
1881 int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1883 struct nfs_inode *nfsi = NFS_I(inode);
1884 int flags = FLUSH_SYNC;
1887 /* no commits means nothing needs to be done */
1888 if (!nfsi->commit_info.ncommit)
1891 if (wbc->sync_mode == WB_SYNC_NONE) {
1892 /* Don't commit yet if this is a non-blocking flush and there
1893 * are a lot of outstanding writes for this mapping.
1895 if (nfsi->commit_info.ncommit <= (nfsi->nrequests >> 1))
1896 goto out_mark_dirty;
1898 /* don't wait for the COMMIT response */
1902 ret = nfs_commit_inode(inode, flags);
1904 if (wbc->sync_mode == WB_SYNC_NONE) {
1905 if (ret < wbc->nr_to_write)
1906 wbc->nr_to_write -= ret;
1908 wbc->nr_to_write = 0;
1913 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1916 EXPORT_SYMBOL_GPL(nfs_write_inode);
1919 * Wrapper for filemap_write_and_wait_range()
1921 * Needed for pNFS in order to ensure data becomes visible to the
1924 int nfs_filemap_write_and_wait_range(struct address_space *mapping,
1925 loff_t lstart, loff_t lend)
1929 ret = filemap_write_and_wait_range(mapping, lstart, lend);
1931 ret = pnfs_sync_inode(mapping->host, true);
1934 EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
1937 * flush the inode to disk.
1939 int nfs_wb_all(struct inode *inode)
1943 trace_nfs_writeback_inode_enter(inode);
1945 ret = filemap_write_and_wait(inode->i_mapping);
1948 ret = nfs_commit_inode(inode, FLUSH_SYNC);
1951 pnfs_sync_inode(inode, true);
1955 trace_nfs_writeback_inode_exit(inode, ret);
1958 EXPORT_SYMBOL_GPL(nfs_wb_all);
1960 int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1962 struct nfs_page *req;
1965 wait_on_page_writeback(page);
1967 /* blocking call to cancel all requests and join to a single (head)
1969 req = nfs_lock_and_join_requests(page, false);
1974 /* all requests from this page have been cancelled by
1975 * nfs_lock_and_join_requests, so just remove the head
1976 * request from the inode / page_private pointer and
1978 nfs_inode_remove_request(req);
1979 nfs_unlock_and_release_request(req);
1986 * Write back all requests on one page - we do this before reading it.
1988 int nfs_wb_single_page(struct inode *inode, struct page *page, bool launder)
1990 loff_t range_start = page_file_offset(page);
1991 loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
1992 struct writeback_control wbc = {
1993 .sync_mode = WB_SYNC_ALL,
1995 .range_start = range_start,
1996 .range_end = range_end,
2000 trace_nfs_writeback_page_enter(inode);
2003 wait_on_page_writeback(page);
2004 if (clear_page_dirty_for_io(page)) {
2005 ret = nfs_writepage_locked(page, &wbc, launder);
2011 if (!PagePrivate(page))
2013 ret = nfs_commit_inode(inode, FLUSH_SYNC);
2018 trace_nfs_writeback_page_exit(inode, ret);
2022 #ifdef CONFIG_MIGRATION
2023 int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
2024 struct page *page, enum migrate_mode mode)
2027 * If PagePrivate is set, then the page is currently associated with
2028 * an in-progress read or write request. Don't try to migrate it.
2030 * FIXME: we could do this in principle, but we'll need a way to ensure
2031 * that we can safely release the inode reference while holding
2034 if (PagePrivate(page))
2037 if (!nfs_fscache_release_page(page, GFP_KERNEL))
2040 return migrate_page(mapping, newpage, page, mode);
2044 int __init nfs_init_writepagecache(void)
2046 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
2047 sizeof(struct nfs_pgio_header),
2048 0, SLAB_HWCACHE_ALIGN,
2050 if (nfs_wdata_cachep == NULL)
2053 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
2055 if (nfs_wdata_mempool == NULL)
2056 goto out_destroy_write_cache;
2058 nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
2059 sizeof(struct nfs_commit_data),
2060 0, SLAB_HWCACHE_ALIGN,
2062 if (nfs_cdata_cachep == NULL)
2063 goto out_destroy_write_mempool;
2065 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
2067 if (nfs_commit_mempool == NULL)
2068 goto out_destroy_commit_cache;
2071 * NFS congestion size, scale with available memory.
2083 * This allows larger machines to have larger/more transfers.
2084 * Limit the default to 256M
2086 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
2087 if (nfs_congestion_kb > 256*1024)
2088 nfs_congestion_kb = 256*1024;
2092 out_destroy_commit_cache:
2093 kmem_cache_destroy(nfs_cdata_cachep);
2094 out_destroy_write_mempool:
2095 mempool_destroy(nfs_wdata_mempool);
2096 out_destroy_write_cache:
2097 kmem_cache_destroy(nfs_wdata_cachep);
2101 void nfs_destroy_writepagecache(void)
2103 mempool_destroy(nfs_commit_mempool);
2104 kmem_cache_destroy(nfs_cdata_cachep);
2105 mempool_destroy(nfs_wdata_mempool);
2106 kmem_cache_destroy(nfs_wdata_cachep);
2109 static const struct nfs_rw_ops nfs_rw_write_ops = {
2110 .rw_mode = FMODE_WRITE,
2111 .rw_alloc_header = nfs_writehdr_alloc,
2112 .rw_free_header = nfs_writehdr_free,
2113 .rw_done = nfs_writeback_done,
2114 .rw_result = nfs_writeback_result,
2115 .rw_initiate = nfs_initiate_write,