4 * Write file data over NFS.
6 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
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>
17 #include <linux/sunrpc/clnt.h>
18 #include <linux/nfs_fs.h>
19 #include <linux/nfs_mount.h>
20 #include <linux/nfs_page.h>
21 #include <linux/backing-dev.h>
23 #include <asm/uaccess.h>
25 #include "delegation.h"
29 #define NFSDBG_FACILITY NFSDBG_PAGECACHE
31 #define MIN_POOL_WRITE (32)
32 #define MIN_POOL_COMMIT (4)
35 * Local function declarations
37 static struct nfs_page
* nfs_update_request(struct nfs_open_context
*,
39 unsigned int, unsigned int);
40 static void nfs_pageio_init_write(struct nfs_pageio_descriptor
*desc
,
41 struct inode
*inode
, int ioflags
);
42 static const struct rpc_call_ops nfs_write_partial_ops
;
43 static const struct rpc_call_ops nfs_write_full_ops
;
44 static const struct rpc_call_ops nfs_commit_ops
;
46 static struct kmem_cache
*nfs_wdata_cachep
;
47 static mempool_t
*nfs_wdata_mempool
;
48 static mempool_t
*nfs_commit_mempool
;
50 struct nfs_write_data
*nfs_commit_alloc(void)
52 struct nfs_write_data
*p
= mempool_alloc(nfs_commit_mempool
, GFP_NOFS
);
55 memset(p
, 0, sizeof(*p
));
56 INIT_LIST_HEAD(&p
->pages
);
61 static void nfs_commit_rcu_free(struct rcu_head
*head
)
63 struct nfs_write_data
*p
= container_of(head
, struct nfs_write_data
, task
.u
.tk_rcu
);
64 if (p
&& (p
->pagevec
!= &p
->page_array
[0]))
66 mempool_free(p
, nfs_commit_mempool
);
69 void nfs_commit_free(struct nfs_write_data
*wdata
)
71 call_rcu_bh(&wdata
->task
.u
.tk_rcu
, nfs_commit_rcu_free
);
74 struct nfs_write_data
*nfs_writedata_alloc(unsigned int pagecount
)
76 struct nfs_write_data
*p
= mempool_alloc(nfs_wdata_mempool
, GFP_NOFS
);
79 memset(p
, 0, sizeof(*p
));
80 INIT_LIST_HEAD(&p
->pages
);
81 p
->npages
= pagecount
;
82 if (pagecount
<= ARRAY_SIZE(p
->page_array
))
83 p
->pagevec
= p
->page_array
;
85 p
->pagevec
= kcalloc(pagecount
, sizeof(struct page
*), GFP_NOFS
);
87 mempool_free(p
, nfs_wdata_mempool
);
95 static void nfs_writedata_rcu_free(struct rcu_head
*head
)
97 struct nfs_write_data
*p
= container_of(head
, struct nfs_write_data
, task
.u
.tk_rcu
);
98 if (p
&& (p
->pagevec
!= &p
->page_array
[0]))
100 mempool_free(p
, nfs_wdata_mempool
);
103 static void nfs_writedata_free(struct nfs_write_data
*wdata
)
105 call_rcu_bh(&wdata
->task
.u
.tk_rcu
, nfs_writedata_rcu_free
);
108 void nfs_writedata_release(void *wdata
)
110 nfs_writedata_free(wdata
);
113 static void nfs_context_set_write_error(struct nfs_open_context
*ctx
, int error
)
117 set_bit(NFS_CONTEXT_ERROR_WRITE
, &ctx
->flags
);
120 static struct nfs_page
*nfs_page_find_request_locked(struct page
*page
)
122 struct nfs_page
*req
= NULL
;
124 if (PagePrivate(page
)) {
125 req
= (struct nfs_page
*)page_private(page
);
127 kref_get(&req
->wb_kref
);
132 static struct nfs_page
*nfs_page_find_request(struct page
*page
)
134 struct inode
*inode
= page
->mapping
->host
;
135 struct nfs_page
*req
= NULL
;
137 spin_lock(&inode
->i_lock
);
138 req
= nfs_page_find_request_locked(page
);
139 spin_unlock(&inode
->i_lock
);
143 /* Adjust the file length if we're writing beyond the end */
144 static void nfs_grow_file(struct page
*page
, unsigned int offset
, unsigned int count
)
146 struct inode
*inode
= page
->mapping
->host
;
147 loff_t end
, i_size
= i_size_read(inode
);
148 pgoff_t end_index
= (i_size
- 1) >> PAGE_CACHE_SHIFT
;
150 if (i_size
> 0 && page
->index
< end_index
)
152 end
= ((loff_t
)page
->index
<< PAGE_CACHE_SHIFT
) + ((loff_t
)offset
+count
);
155 nfs_inc_stats(inode
, NFSIOS_EXTENDWRITE
);
156 i_size_write(inode
, end
);
159 /* A writeback failed: mark the page as bad, and invalidate the page cache */
160 static void nfs_set_pageerror(struct page
*page
)
163 nfs_zap_mapping(page
->mapping
->host
, page
->mapping
);
166 /* We can set the PG_uptodate flag if we see that a write request
167 * covers the full page.
169 static void nfs_mark_uptodate(struct page
*page
, unsigned int base
, unsigned int count
)
171 if (PageUptodate(page
))
175 if (count
!= nfs_page_length(page
))
177 if (count
!= PAGE_CACHE_SIZE
)
178 zero_user_page(page
, count
, PAGE_CACHE_SIZE
- count
, KM_USER0
);
179 SetPageUptodate(page
);
182 static int nfs_writepage_setup(struct nfs_open_context
*ctx
, struct page
*page
,
183 unsigned int offset
, unsigned int count
)
185 struct nfs_page
*req
;
189 req
= nfs_update_request(ctx
, page
, offset
, count
);
195 ret
= nfs_wb_page(page
->mapping
->host
, page
);
199 /* Update file length */
200 nfs_grow_file(page
, offset
, count
);
201 nfs_unlock_request(req
);
205 static int wb_priority(struct writeback_control
*wbc
)
207 if (wbc
->for_reclaim
)
208 return FLUSH_HIGHPRI
| FLUSH_STABLE
;
209 if (wbc
->for_kupdate
)
215 * NFS congestion control
218 int nfs_congestion_kb
;
220 #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
221 #define NFS_CONGESTION_OFF_THRESH \
222 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
224 static int nfs_set_page_writeback(struct page
*page
)
226 int ret
= test_set_page_writeback(page
);
229 struct inode
*inode
= page
->mapping
->host
;
230 struct nfs_server
*nfss
= NFS_SERVER(inode
);
232 if (atomic_long_inc_return(&nfss
->writeback
) >
233 NFS_CONGESTION_ON_THRESH
)
234 set_bdi_congested(&nfss
->backing_dev_info
, WRITE
);
239 static void nfs_end_page_writeback(struct page
*page
)
241 struct inode
*inode
= page
->mapping
->host
;
242 struct nfs_server
*nfss
= NFS_SERVER(inode
);
244 end_page_writeback(page
);
245 if (atomic_long_dec_return(&nfss
->writeback
) < NFS_CONGESTION_OFF_THRESH
)
246 clear_bdi_congested(&nfss
->backing_dev_info
, WRITE
);
250 * Find an associated nfs write request, and prepare to flush it out
251 * May return an error if the user signalled nfs_wait_on_request().
253 static int nfs_page_async_flush(struct nfs_pageio_descriptor
*pgio
,
256 struct inode
*inode
= page
->mapping
->host
;
257 struct nfs_inode
*nfsi
= NFS_I(inode
);
258 struct nfs_page
*req
;
261 spin_lock(&inode
->i_lock
);
263 req
= nfs_page_find_request_locked(page
);
265 spin_unlock(&inode
->i_lock
);
268 if (nfs_lock_request_dontget(req
))
270 /* Note: If we hold the page lock, as is the case in nfs_writepage,
271 * then the call to nfs_lock_request_dontget() will always
272 * succeed provided that someone hasn't already marked the
273 * request as dirty (in which case we don't care).
275 spin_unlock(&inode
->i_lock
);
276 ret
= nfs_wait_on_request(req
);
277 nfs_release_request(req
);
280 spin_lock(&inode
->i_lock
);
282 if (test_bit(PG_NEED_COMMIT
, &req
->wb_flags
)) {
283 /* This request is marked for commit */
284 spin_unlock(&inode
->i_lock
);
285 nfs_unlock_request(req
);
286 nfs_pageio_complete(pgio
);
289 if (nfs_set_page_writeback(page
) != 0) {
290 spin_unlock(&inode
->i_lock
);
293 radix_tree_tag_set(&nfsi
->nfs_page_tree
, req
->wb_index
,
294 NFS_PAGE_TAG_LOCKED
);
295 spin_unlock(&inode
->i_lock
);
296 nfs_pageio_add_request(pgio
, req
);
300 static int nfs_do_writepage(struct page
*page
, struct writeback_control
*wbc
, struct nfs_pageio_descriptor
*pgio
)
302 struct inode
*inode
= page
->mapping
->host
;
304 nfs_inc_stats(inode
, NFSIOS_VFSWRITEPAGE
);
305 nfs_add_stats(inode
, NFSIOS_WRITEPAGES
, 1);
307 nfs_pageio_cond_complete(pgio
, page
->index
);
308 return nfs_page_async_flush(pgio
, page
);
312 * Write an mmapped page to the server.
314 static int nfs_writepage_locked(struct page
*page
, struct writeback_control
*wbc
)
316 struct nfs_pageio_descriptor pgio
;
319 nfs_pageio_init_write(&pgio
, page
->mapping
->host
, wb_priority(wbc
));
320 err
= nfs_do_writepage(page
, wbc
, &pgio
);
321 nfs_pageio_complete(&pgio
);
324 if (pgio
.pg_error
< 0)
325 return pgio
.pg_error
;
329 int nfs_writepage(struct page
*page
, struct writeback_control
*wbc
)
333 ret
= nfs_writepage_locked(page
, wbc
);
338 static int nfs_writepages_callback(struct page
*page
, struct writeback_control
*wbc
, void *data
)
342 ret
= nfs_do_writepage(page
, wbc
, data
);
347 int nfs_writepages(struct address_space
*mapping
, struct writeback_control
*wbc
)
349 struct inode
*inode
= mapping
->host
;
350 struct nfs_pageio_descriptor pgio
;
353 nfs_inc_stats(inode
, NFSIOS_VFSWRITEPAGES
);
355 nfs_pageio_init_write(&pgio
, inode
, wb_priority(wbc
));
356 err
= write_cache_pages(mapping
, wbc
, nfs_writepages_callback
, &pgio
);
357 nfs_pageio_complete(&pgio
);
360 if (pgio
.pg_error
< 0)
361 return pgio
.pg_error
;
366 * Insert a write request into an inode
368 static int nfs_inode_add_request(struct inode
*inode
, struct nfs_page
*req
)
370 struct nfs_inode
*nfsi
= NFS_I(inode
);
373 error
= radix_tree_insert(&nfsi
->nfs_page_tree
, req
->wb_index
, req
);
374 BUG_ON(error
== -EEXIST
);
379 if (nfs_have_delegation(inode
, FMODE_WRITE
))
382 SetPagePrivate(req
->wb_page
);
383 set_page_private(req
->wb_page
, (unsigned long)req
);
385 kref_get(&req
->wb_kref
);
390 * Remove a write request from an inode
392 static void nfs_inode_remove_request(struct nfs_page
*req
)
394 struct inode
*inode
= req
->wb_context
->path
.dentry
->d_inode
;
395 struct nfs_inode
*nfsi
= NFS_I(inode
);
397 BUG_ON (!NFS_WBACK_BUSY(req
));
399 spin_lock(&inode
->i_lock
);
400 set_page_private(req
->wb_page
, 0);
401 ClearPagePrivate(req
->wb_page
);
402 radix_tree_delete(&nfsi
->nfs_page_tree
, req
->wb_index
);
405 spin_unlock(&inode
->i_lock
);
408 spin_unlock(&inode
->i_lock
);
409 nfs_clear_request(req
);
410 nfs_release_request(req
);
414 nfs_redirty_request(struct nfs_page
*req
)
416 __set_page_dirty_nobuffers(req
->wb_page
);
420 * Check if a request is dirty
423 nfs_dirty_request(struct nfs_page
*req
)
425 struct page
*page
= req
->wb_page
;
427 if (page
== NULL
|| test_bit(PG_NEED_COMMIT
, &req
->wb_flags
))
429 return !PageWriteback(req
->wb_page
);
432 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
434 * Add a request to the inode's commit list.
437 nfs_mark_request_commit(struct nfs_page
*req
)
439 struct inode
*inode
= req
->wb_context
->path
.dentry
->d_inode
;
440 struct nfs_inode
*nfsi
= NFS_I(inode
);
442 spin_lock(&inode
->i_lock
);
444 set_bit(PG_NEED_COMMIT
, &(req
)->wb_flags
);
445 radix_tree_tag_set(&nfsi
->nfs_page_tree
,
447 NFS_PAGE_TAG_COMMIT
);
448 spin_unlock(&inode
->i_lock
);
449 inc_zone_page_state(req
->wb_page
, NR_UNSTABLE_NFS
);
450 inc_bdi_stat(req
->wb_page
->mapping
->backing_dev_info
, BDI_RECLAIMABLE
);
451 __mark_inode_dirty(inode
, I_DIRTY_DATASYNC
);
455 int nfs_write_need_commit(struct nfs_write_data
*data
)
457 return data
->verf
.committed
!= NFS_FILE_SYNC
;
461 int nfs_reschedule_unstable_write(struct nfs_page
*req
)
463 if (test_bit(PG_NEED_COMMIT
, &req
->wb_flags
)) {
464 nfs_mark_request_commit(req
);
467 if (test_and_clear_bit(PG_NEED_RESCHED
, &req
->wb_flags
)) {
468 nfs_redirty_request(req
);
475 nfs_mark_request_commit(struct nfs_page
*req
)
480 int nfs_write_need_commit(struct nfs_write_data
*data
)
486 int nfs_reschedule_unstable_write(struct nfs_page
*req
)
493 * Wait for a request to complete.
495 * Interruptible by signals only if mounted with intr flag.
497 static int nfs_wait_on_requests_locked(struct inode
*inode
, pgoff_t idx_start
, unsigned int npages
)
499 struct nfs_inode
*nfsi
= NFS_I(inode
);
500 struct nfs_page
*req
;
501 pgoff_t idx_end
, next
;
502 unsigned int res
= 0;
508 idx_end
= idx_start
+ npages
- 1;
511 while (radix_tree_gang_lookup_tag(&nfsi
->nfs_page_tree
, (void **)&req
, next
, 1, NFS_PAGE_TAG_LOCKED
)) {
512 if (req
->wb_index
> idx_end
)
515 next
= req
->wb_index
+ 1;
516 BUG_ON(!NFS_WBACK_BUSY(req
));
518 kref_get(&req
->wb_kref
);
519 spin_unlock(&inode
->i_lock
);
520 error
= nfs_wait_on_request(req
);
521 nfs_release_request(req
);
522 spin_lock(&inode
->i_lock
);
530 static void nfs_cancel_commit_list(struct list_head
*head
)
532 struct nfs_page
*req
;
534 while(!list_empty(head
)) {
535 req
= nfs_list_entry(head
->next
);
536 dec_zone_page_state(req
->wb_page
, NR_UNSTABLE_NFS
);
537 dec_bdi_stat(req
->wb_page
->mapping
->backing_dev_info
,
539 nfs_list_remove_request(req
);
540 clear_bit(PG_NEED_COMMIT
, &(req
)->wb_flags
);
541 nfs_inode_remove_request(req
);
542 nfs_unlock_request(req
);
546 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
548 * nfs_scan_commit - Scan an inode for commit requests
549 * @inode: NFS inode to scan
550 * @dst: destination list
551 * @idx_start: lower bound of page->index to scan.
552 * @npages: idx_start + npages sets the upper bound to scan.
554 * Moves requests from the inode's 'commit' request list.
555 * The requests are *not* checked to ensure that they form a contiguous set.
558 nfs_scan_commit(struct inode
*inode
, struct list_head
*dst
, pgoff_t idx_start
, unsigned int npages
)
560 struct nfs_inode
*nfsi
= NFS_I(inode
);
563 if (nfsi
->ncommit
!= 0) {
564 res
= nfs_scan_list(nfsi
, dst
, idx_start
, npages
,
565 NFS_PAGE_TAG_COMMIT
);
566 nfsi
->ncommit
-= res
;
571 static inline int nfs_scan_commit(struct inode
*inode
, struct list_head
*dst
, pgoff_t idx_start
, unsigned int npages
)
578 * Try to update any existing write request, or create one if there is none.
579 * In order to match, the request's credentials must match those of
580 * the calling process.
582 * Note: Should always be called with the Page Lock held!
584 static struct nfs_page
* nfs_update_request(struct nfs_open_context
* ctx
,
585 struct page
*page
, unsigned int offset
, unsigned int bytes
)
587 struct address_space
*mapping
= page
->mapping
;
588 struct inode
*inode
= mapping
->host
;
589 struct nfs_page
*req
, *new = NULL
;
592 end
= offset
+ bytes
;
595 /* Loop over all inode entries and see if we find
596 * A request for the page we wish to update
598 spin_lock(&inode
->i_lock
);
599 req
= nfs_page_find_request_locked(page
);
601 if (!nfs_lock_request_dontget(req
)) {
604 spin_unlock(&inode
->i_lock
);
605 error
= nfs_wait_on_request(req
);
606 nfs_release_request(req
);
609 nfs_release_request(new);
610 return ERR_PTR(error
);
614 spin_unlock(&inode
->i_lock
);
616 nfs_release_request(new);
622 nfs_lock_request_dontget(new);
623 error
= nfs_inode_add_request(inode
, new);
625 spin_unlock(&inode
->i_lock
);
626 nfs_unlock_request(new);
627 return ERR_PTR(error
);
629 spin_unlock(&inode
->i_lock
);
632 spin_unlock(&inode
->i_lock
);
634 new = nfs_create_request(ctx
, inode
, page
, offset
, bytes
);
639 /* We have a request for our page.
640 * If the creds don't match, or the
641 * page addresses don't match,
642 * tell the caller to wait on the conflicting
645 rqend
= req
->wb_offset
+ req
->wb_bytes
;
646 if (req
->wb_context
!= ctx
647 || req
->wb_page
!= page
648 || !nfs_dirty_request(req
)
649 || offset
> rqend
|| end
< req
->wb_offset
) {
650 nfs_unlock_request(req
);
651 return ERR_PTR(-EBUSY
);
654 /* Okay, the request matches. Update the region */
655 if (offset
< req
->wb_offset
) {
656 req
->wb_offset
= offset
;
657 req
->wb_pgbase
= offset
;
658 req
->wb_bytes
= rqend
- req
->wb_offset
;
662 req
->wb_bytes
= end
- req
->wb_offset
;
667 int nfs_flush_incompatible(struct file
*file
, struct page
*page
)
669 struct nfs_open_context
*ctx
= nfs_file_open_context(file
);
670 struct nfs_page
*req
;
671 int do_flush
, status
;
673 * Look for a request corresponding to this page. If there
674 * is one, and it belongs to another file, we flush it out
675 * before we try to copy anything into the page. Do this
676 * due to the lack of an ACCESS-type call in NFSv2.
677 * Also do the same if we find a request from an existing
681 req
= nfs_page_find_request(page
);
684 do_flush
= req
->wb_page
!= page
|| req
->wb_context
!= ctx
685 || !nfs_dirty_request(req
);
686 nfs_release_request(req
);
689 status
= nfs_wb_page(page
->mapping
->host
, page
);
690 } while (status
== 0);
695 * Update and possibly write a cached page of an NFS file.
697 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
698 * things with a page scheduled for an RPC call (e.g. invalidate it).
700 int nfs_updatepage(struct file
*file
, struct page
*page
,
701 unsigned int offset
, unsigned int count
)
703 struct nfs_open_context
*ctx
= nfs_file_open_context(file
);
704 struct inode
*inode
= page
->mapping
->host
;
707 nfs_inc_stats(inode
, NFSIOS_VFSUPDATEPAGE
);
709 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
710 file
->f_path
.dentry
->d_parent
->d_name
.name
,
711 file
->f_path
.dentry
->d_name
.name
, count
,
712 (long long)(page_offset(page
) +offset
));
714 /* If we're not using byte range locks, and we know the page
715 * is entirely in cache, it may be more efficient to avoid
716 * fragmenting write requests.
718 if (PageUptodate(page
) && inode
->i_flock
== NULL
&& !(file
->f_mode
& O_SYNC
)) {
719 count
= max(count
+ offset
, nfs_page_length(page
));
723 status
= nfs_writepage_setup(ctx
, page
, offset
, count
);
724 __set_page_dirty_nobuffers(page
);
726 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
727 status
, (long long)i_size_read(inode
));
729 nfs_set_pageerror(page
);
733 static void nfs_writepage_release(struct nfs_page
*req
)
736 if (PageError(req
->wb_page
)) {
737 nfs_end_page_writeback(req
->wb_page
);
738 nfs_inode_remove_request(req
);
739 } else if (!nfs_reschedule_unstable_write(req
)) {
740 /* Set the PG_uptodate flag */
741 nfs_mark_uptodate(req
->wb_page
, req
->wb_pgbase
, req
->wb_bytes
);
742 nfs_end_page_writeback(req
->wb_page
);
743 nfs_inode_remove_request(req
);
745 nfs_end_page_writeback(req
->wb_page
);
746 nfs_clear_page_tag_locked(req
);
749 static inline int flush_task_priority(int how
)
751 switch (how
& (FLUSH_HIGHPRI
|FLUSH_LOWPRI
)) {
753 return RPC_PRIORITY_HIGH
;
755 return RPC_PRIORITY_LOW
;
757 return RPC_PRIORITY_NORMAL
;
761 * Set up the argument/result storage required for the RPC call.
763 static void nfs_write_rpcsetup(struct nfs_page
*req
,
764 struct nfs_write_data
*data
,
765 const struct rpc_call_ops
*call_ops
,
766 unsigned int count
, unsigned int offset
,
772 /* Set up the RPC argument and reply structs
773 * NB: take care not to mess about with data->commit et al. */
776 data
->inode
= inode
= req
->wb_context
->path
.dentry
->d_inode
;
777 data
->cred
= req
->wb_context
->cred
;
779 data
->args
.fh
= NFS_FH(inode
);
780 data
->args
.offset
= req_offset(req
) + offset
;
781 data
->args
.pgbase
= req
->wb_pgbase
+ offset
;
782 data
->args
.pages
= data
->pagevec
;
783 data
->args
.count
= count
;
784 data
->args
.context
= req
->wb_context
;
786 data
->res
.fattr
= &data
->fattr
;
787 data
->res
.count
= count
;
788 data
->res
.verf
= &data
->verf
;
789 nfs_fattr_init(&data
->fattr
);
791 /* Set up the initial task struct. */
792 flags
= (how
& FLUSH_SYNC
) ? 0 : RPC_TASK_ASYNC
;
793 rpc_init_task(&data
->task
, NFS_CLIENT(inode
), flags
, call_ops
, data
);
794 NFS_PROTO(inode
)->write_setup(data
, how
);
796 data
->task
.tk_priority
= flush_task_priority(how
);
797 data
->task
.tk_cookie
= (unsigned long)inode
;
799 dprintk("NFS: %5u initiated write call "
800 "(req %s/%Ld, %u bytes @ offset %Lu)\n",
803 (long long)NFS_FILEID(inode
),
805 (unsigned long long)data
->args
.offset
);
808 static void nfs_execute_write(struct nfs_write_data
*data
)
810 struct rpc_clnt
*clnt
= NFS_CLIENT(data
->inode
);
813 rpc_clnt_sigmask(clnt
, &oldset
);
814 rpc_execute(&data
->task
);
815 rpc_clnt_sigunmask(clnt
, &oldset
);
819 * Generate multiple small requests to write out a single
820 * contiguous dirty area on one page.
822 static int nfs_flush_multi(struct inode
*inode
, struct list_head
*head
, unsigned int npages
, size_t count
, int how
)
824 struct nfs_page
*req
= nfs_list_entry(head
->next
);
825 struct page
*page
= req
->wb_page
;
826 struct nfs_write_data
*data
;
827 size_t wsize
= NFS_SERVER(inode
)->wsize
, nbytes
;
832 nfs_list_remove_request(req
);
836 size_t len
= min(nbytes
, wsize
);
838 data
= nfs_writedata_alloc(1);
841 list_add(&data
->pages
, &list
);
844 } while (nbytes
!= 0);
845 atomic_set(&req
->wb_complete
, requests
);
847 ClearPageError(page
);
851 data
= list_entry(list
.next
, struct nfs_write_data
, pages
);
852 list_del_init(&data
->pages
);
854 data
->pagevec
[0] = page
;
858 nfs_write_rpcsetup(req
, data
, &nfs_write_partial_ops
,
862 nfs_execute_write(data
);
863 } while (nbytes
!= 0);
868 while (!list_empty(&list
)) {
869 data
= list_entry(list
.next
, struct nfs_write_data
, pages
);
870 list_del(&data
->pages
);
871 nfs_writedata_release(data
);
873 nfs_redirty_request(req
);
874 nfs_end_page_writeback(req
->wb_page
);
875 nfs_clear_page_tag_locked(req
);
880 * Create an RPC task for the given write request and kick it.
881 * The page must have been locked by the caller.
883 * It may happen that the page we're passed is not marked dirty.
884 * This is the case if nfs_updatepage detects a conflicting request
885 * that has been written but not committed.
887 static int nfs_flush_one(struct inode
*inode
, struct list_head
*head
, unsigned int npages
, size_t count
, int how
)
889 struct nfs_page
*req
;
891 struct nfs_write_data
*data
;
893 data
= nfs_writedata_alloc(npages
);
897 pages
= data
->pagevec
;
898 while (!list_empty(head
)) {
899 req
= nfs_list_entry(head
->next
);
900 nfs_list_remove_request(req
);
901 nfs_list_add_request(req
, &data
->pages
);
902 ClearPageError(req
->wb_page
);
903 *pages
++ = req
->wb_page
;
905 req
= nfs_list_entry(data
->pages
.next
);
907 /* Set up the argument struct */
908 nfs_write_rpcsetup(req
, data
, &nfs_write_full_ops
, count
, 0, how
);
910 nfs_execute_write(data
);
913 while (!list_empty(head
)) {
914 req
= nfs_list_entry(head
->next
);
915 nfs_list_remove_request(req
);
916 nfs_redirty_request(req
);
917 nfs_end_page_writeback(req
->wb_page
);
918 nfs_clear_page_tag_locked(req
);
923 static void nfs_pageio_init_write(struct nfs_pageio_descriptor
*pgio
,
924 struct inode
*inode
, int ioflags
)
926 int wsize
= NFS_SERVER(inode
)->wsize
;
928 if (wsize
< PAGE_CACHE_SIZE
)
929 nfs_pageio_init(pgio
, inode
, nfs_flush_multi
, wsize
, ioflags
);
931 nfs_pageio_init(pgio
, inode
, nfs_flush_one
, wsize
, ioflags
);
935 * Handle a write reply that flushed part of a page.
937 static void nfs_writeback_done_partial(struct rpc_task
*task
, void *calldata
)
939 struct nfs_write_data
*data
= calldata
;
940 struct nfs_page
*req
= data
->req
;
941 struct page
*page
= req
->wb_page
;
943 dprintk("NFS: write (%s/%Ld %d@%Ld)",
944 req
->wb_context
->path
.dentry
->d_inode
->i_sb
->s_id
,
945 (long long)NFS_FILEID(req
->wb_context
->path
.dentry
->d_inode
),
947 (long long)req_offset(req
));
949 if (nfs_writeback_done(task
, data
) != 0)
952 if (task
->tk_status
< 0) {
953 nfs_set_pageerror(page
);
954 nfs_context_set_write_error(req
->wb_context
, task
->tk_status
);
955 dprintk(", error = %d\n", task
->tk_status
);
959 if (nfs_write_need_commit(data
)) {
960 struct inode
*inode
= page
->mapping
->host
;
962 spin_lock(&inode
->i_lock
);
963 if (test_bit(PG_NEED_RESCHED
, &req
->wb_flags
)) {
964 /* Do nothing we need to resend the writes */
965 } else if (!test_and_set_bit(PG_NEED_COMMIT
, &req
->wb_flags
)) {
966 memcpy(&req
->wb_verf
, &data
->verf
, sizeof(req
->wb_verf
));
967 dprintk(" defer commit\n");
968 } else if (memcmp(&req
->wb_verf
, &data
->verf
, sizeof(req
->wb_verf
))) {
969 set_bit(PG_NEED_RESCHED
, &req
->wb_flags
);
970 clear_bit(PG_NEED_COMMIT
, &req
->wb_flags
);
971 dprintk(" server reboot detected\n");
973 spin_unlock(&inode
->i_lock
);
978 if (atomic_dec_and_test(&req
->wb_complete
))
979 nfs_writepage_release(req
);
982 static const struct rpc_call_ops nfs_write_partial_ops
= {
983 .rpc_call_done
= nfs_writeback_done_partial
,
984 .rpc_release
= nfs_writedata_release
,
988 * Handle a write reply that flushes a whole page.
990 * FIXME: There is an inherent race with invalidate_inode_pages and
991 * writebacks since the page->count is kept > 1 for as long
992 * as the page has a write request pending.
994 static void nfs_writeback_done_full(struct rpc_task
*task
, void *calldata
)
996 struct nfs_write_data
*data
= calldata
;
997 struct nfs_page
*req
;
1000 if (nfs_writeback_done(task
, data
) != 0)
1003 /* Update attributes as result of writeback. */
1004 while (!list_empty(&data
->pages
)) {
1005 req
= nfs_list_entry(data
->pages
.next
);
1006 nfs_list_remove_request(req
);
1007 page
= req
->wb_page
;
1009 dprintk("NFS: write (%s/%Ld %d@%Ld)",
1010 req
->wb_context
->path
.dentry
->d_inode
->i_sb
->s_id
,
1011 (long long)NFS_FILEID(req
->wb_context
->path
.dentry
->d_inode
),
1013 (long long)req_offset(req
));
1015 if (task
->tk_status
< 0) {
1016 nfs_set_pageerror(page
);
1017 nfs_context_set_write_error(req
->wb_context
, task
->tk_status
);
1018 dprintk(", error = %d\n", task
->tk_status
);
1019 goto remove_request
;
1022 if (nfs_write_need_commit(data
)) {
1023 memcpy(&req
->wb_verf
, &data
->verf
, sizeof(req
->wb_verf
));
1024 nfs_mark_request_commit(req
);
1025 nfs_end_page_writeback(page
);
1026 dprintk(" marked for commit\n");
1029 /* Set the PG_uptodate flag? */
1030 nfs_mark_uptodate(page
, req
->wb_pgbase
, req
->wb_bytes
);
1033 nfs_end_page_writeback(page
);
1034 nfs_inode_remove_request(req
);
1036 nfs_clear_page_tag_locked(req
);
1040 static const struct rpc_call_ops nfs_write_full_ops
= {
1041 .rpc_call_done
= nfs_writeback_done_full
,
1042 .rpc_release
= nfs_writedata_release
,
1047 * This function is called when the WRITE call is complete.
1049 int nfs_writeback_done(struct rpc_task
*task
, struct nfs_write_data
*data
)
1051 struct nfs_writeargs
*argp
= &data
->args
;
1052 struct nfs_writeres
*resp
= &data
->res
;
1055 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
1056 task
->tk_pid
, task
->tk_status
);
1059 * ->write_done will attempt to use post-op attributes to detect
1060 * conflicting writes by other clients. A strict interpretation
1061 * of close-to-open would allow us to continue caching even if
1062 * another writer had changed the file, but some applications
1063 * depend on tighter cache coherency when writing.
1065 status
= NFS_PROTO(data
->inode
)->write_done(task
, data
);
1068 nfs_add_stats(data
->inode
, NFSIOS_SERVERWRITTENBYTES
, resp
->count
);
1070 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1071 if (resp
->verf
->committed
< argp
->stable
&& task
->tk_status
>= 0) {
1072 /* We tried a write call, but the server did not
1073 * commit data to stable storage even though we
1075 * Note: There is a known bug in Tru64 < 5.0 in which
1076 * the server reports NFS_DATA_SYNC, but performs
1077 * NFS_FILE_SYNC. We therefore implement this checking
1078 * as a dprintk() in order to avoid filling syslog.
1080 static unsigned long complain
;
1082 if (time_before(complain
, jiffies
)) {
1083 dprintk("NFS: faulty NFS server %s:"
1084 " (committed = %d) != (stable = %d)\n",
1085 NFS_SERVER(data
->inode
)->nfs_client
->cl_hostname
,
1086 resp
->verf
->committed
, argp
->stable
);
1087 complain
= jiffies
+ 300 * HZ
;
1091 /* Is this a short write? */
1092 if (task
->tk_status
>= 0 && resp
->count
< argp
->count
) {
1093 static unsigned long complain
;
1095 nfs_inc_stats(data
->inode
, NFSIOS_SHORTWRITE
);
1097 /* Has the server at least made some progress? */
1098 if (resp
->count
!= 0) {
1099 /* Was this an NFSv2 write or an NFSv3 stable write? */
1100 if (resp
->verf
->committed
!= NFS_UNSTABLE
) {
1101 /* Resend from where the server left off */
1102 argp
->offset
+= resp
->count
;
1103 argp
->pgbase
+= resp
->count
;
1104 argp
->count
-= resp
->count
;
1106 /* Resend as a stable write in order to avoid
1107 * headaches in the case of a server crash.
1109 argp
->stable
= NFS_FILE_SYNC
;
1111 rpc_restart_call(task
);
1114 if (time_before(complain
, jiffies
)) {
1116 "NFS: Server wrote zero bytes, expected %u.\n",
1118 complain
= jiffies
+ 300 * HZ
;
1120 /* Can't do anything about it except throw an error. */
1121 task
->tk_status
= -EIO
;
1127 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1128 void nfs_commit_release(void *wdata
)
1130 nfs_commit_free(wdata
);
1134 * Set up the argument/result storage required for the RPC call.
1136 static void nfs_commit_rpcsetup(struct list_head
*head
,
1137 struct nfs_write_data
*data
,
1140 struct nfs_page
*first
;
1141 struct inode
*inode
;
1144 /* Set up the RPC argument and reply structs
1145 * NB: take care not to mess about with data->commit et al. */
1147 list_splice_init(head
, &data
->pages
);
1148 first
= nfs_list_entry(data
->pages
.next
);
1149 inode
= first
->wb_context
->path
.dentry
->d_inode
;
1151 data
->inode
= inode
;
1152 data
->cred
= first
->wb_context
->cred
;
1154 data
->args
.fh
= NFS_FH(data
->inode
);
1155 /* Note: we always request a commit of the entire inode */
1156 data
->args
.offset
= 0;
1157 data
->args
.count
= 0;
1158 data
->res
.count
= 0;
1159 data
->res
.fattr
= &data
->fattr
;
1160 data
->res
.verf
= &data
->verf
;
1161 nfs_fattr_init(&data
->fattr
);
1163 /* Set up the initial task struct. */
1164 flags
= (how
& FLUSH_SYNC
) ? 0 : RPC_TASK_ASYNC
;
1165 rpc_init_task(&data
->task
, NFS_CLIENT(inode
), flags
, &nfs_commit_ops
, data
);
1166 NFS_PROTO(inode
)->commit_setup(data
, how
);
1168 data
->task
.tk_priority
= flush_task_priority(how
);
1169 data
->task
.tk_cookie
= (unsigned long)inode
;
1171 dprintk("NFS: %5u initiated commit call\n", data
->task
.tk_pid
);
1175 * Commit dirty pages
1178 nfs_commit_list(struct inode
*inode
, struct list_head
*head
, int how
)
1180 struct nfs_write_data
*data
;
1181 struct nfs_page
*req
;
1183 data
= nfs_commit_alloc();
1188 /* Set up the argument struct */
1189 nfs_commit_rpcsetup(head
, data
, how
);
1191 nfs_execute_write(data
);
1194 while (!list_empty(head
)) {
1195 req
= nfs_list_entry(head
->next
);
1196 nfs_list_remove_request(req
);
1197 nfs_mark_request_commit(req
);
1198 dec_zone_page_state(req
->wb_page
, NR_UNSTABLE_NFS
);
1199 dec_bdi_stat(req
->wb_page
->mapping
->backing_dev_info
,
1201 nfs_clear_page_tag_locked(req
);
1207 * COMMIT call returned
1209 static void nfs_commit_done(struct rpc_task
*task
, void *calldata
)
1211 struct nfs_write_data
*data
= calldata
;
1212 struct nfs_page
*req
;
1214 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1215 task
->tk_pid
, task
->tk_status
);
1217 /* Call the NFS version-specific code */
1218 if (NFS_PROTO(data
->inode
)->commit_done(task
, data
) != 0)
1221 while (!list_empty(&data
->pages
)) {
1222 req
= nfs_list_entry(data
->pages
.next
);
1223 nfs_list_remove_request(req
);
1224 clear_bit(PG_NEED_COMMIT
, &(req
)->wb_flags
);
1225 dec_zone_page_state(req
->wb_page
, NR_UNSTABLE_NFS
);
1226 dec_bdi_stat(req
->wb_page
->mapping
->backing_dev_info
,
1229 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
1230 req
->wb_context
->path
.dentry
->d_inode
->i_sb
->s_id
,
1231 (long long)NFS_FILEID(req
->wb_context
->path
.dentry
->d_inode
),
1233 (long long)req_offset(req
));
1234 if (task
->tk_status
< 0) {
1235 nfs_context_set_write_error(req
->wb_context
, task
->tk_status
);
1236 nfs_inode_remove_request(req
);
1237 dprintk(", error = %d\n", task
->tk_status
);
1241 /* Okay, COMMIT succeeded, apparently. Check the verifier
1242 * returned by the server against all stored verfs. */
1243 if (!memcmp(req
->wb_verf
.verifier
, data
->verf
.verifier
, sizeof(data
->verf
.verifier
))) {
1244 /* We have a match */
1245 /* Set the PG_uptodate flag */
1246 nfs_mark_uptodate(req
->wb_page
, req
->wb_pgbase
,
1248 nfs_inode_remove_request(req
);
1252 /* We have a mismatch. Write the page again */
1253 dprintk(" mismatch\n");
1254 nfs_redirty_request(req
);
1256 nfs_clear_page_tag_locked(req
);
1260 static const struct rpc_call_ops nfs_commit_ops
= {
1261 .rpc_call_done
= nfs_commit_done
,
1262 .rpc_release
= nfs_commit_release
,
1265 int nfs_commit_inode(struct inode
*inode
, int how
)
1270 spin_lock(&inode
->i_lock
);
1271 res
= nfs_scan_commit(inode
, &head
, 0, 0);
1272 spin_unlock(&inode
->i_lock
);
1274 int error
= nfs_commit_list(inode
, &head
, how
);
1281 static inline int nfs_commit_list(struct inode
*inode
, struct list_head
*head
, int how
)
1287 long nfs_sync_mapping_wait(struct address_space
*mapping
, struct writeback_control
*wbc
, int how
)
1289 struct inode
*inode
= mapping
->host
;
1290 pgoff_t idx_start
, idx_end
;
1291 unsigned int npages
= 0;
1293 int nocommit
= how
& FLUSH_NOCOMMIT
;
1297 if (wbc
->range_cyclic
)
1300 idx_start
= wbc
->range_start
>> PAGE_CACHE_SHIFT
;
1301 idx_end
= wbc
->range_end
>> PAGE_CACHE_SHIFT
;
1302 if (idx_end
> idx_start
) {
1303 pgoff_t l_npages
= 1 + idx_end
- idx_start
;
1305 if (sizeof(npages
) != sizeof(l_npages
) &&
1306 (pgoff_t
)npages
!= l_npages
)
1310 how
&= ~FLUSH_NOCOMMIT
;
1311 spin_lock(&inode
->i_lock
);
1313 ret
= nfs_wait_on_requests_locked(inode
, idx_start
, npages
);
1318 pages
= nfs_scan_commit(inode
, &head
, idx_start
, npages
);
1321 if (how
& FLUSH_INVALIDATE
) {
1322 spin_unlock(&inode
->i_lock
);
1323 nfs_cancel_commit_list(&head
);
1325 spin_lock(&inode
->i_lock
);
1328 pages
+= nfs_scan_commit(inode
, &head
, 0, 0);
1329 spin_unlock(&inode
->i_lock
);
1330 ret
= nfs_commit_list(inode
, &head
, how
);
1331 spin_lock(&inode
->i_lock
);
1334 spin_unlock(&inode
->i_lock
);
1338 static int __nfs_write_mapping(struct address_space
*mapping
, struct writeback_control
*wbc
, int how
)
1342 ret
= nfs_writepages(mapping
, wbc
);
1345 ret
= nfs_sync_mapping_wait(mapping
, wbc
, how
);
1350 __mark_inode_dirty(mapping
->host
, I_DIRTY_PAGES
);
1354 /* Two pass sync: first using WB_SYNC_NONE, then WB_SYNC_ALL */
1355 static int nfs_write_mapping(struct address_space
*mapping
, int how
)
1357 struct writeback_control wbc
= {
1358 .bdi
= mapping
->backing_dev_info
,
1359 .sync_mode
= WB_SYNC_NONE
,
1360 .nr_to_write
= LONG_MAX
,
1361 .for_writepages
= 1,
1366 ret
= __nfs_write_mapping(mapping
, &wbc
, how
);
1369 wbc
.sync_mode
= WB_SYNC_ALL
;
1370 return __nfs_write_mapping(mapping
, &wbc
, how
);
1374 * flush the inode to disk.
1376 int nfs_wb_all(struct inode
*inode
)
1378 return nfs_write_mapping(inode
->i_mapping
, 0);
1381 int nfs_wb_nocommit(struct inode
*inode
)
1383 return nfs_write_mapping(inode
->i_mapping
, FLUSH_NOCOMMIT
);
1386 int nfs_wb_page_cancel(struct inode
*inode
, struct page
*page
)
1388 struct nfs_page
*req
;
1389 loff_t range_start
= page_offset(page
);
1390 loff_t range_end
= range_start
+ (loff_t
)(PAGE_CACHE_SIZE
- 1);
1391 struct writeback_control wbc
= {
1392 .bdi
= page
->mapping
->backing_dev_info
,
1393 .sync_mode
= WB_SYNC_ALL
,
1394 .nr_to_write
= LONG_MAX
,
1395 .range_start
= range_start
,
1396 .range_end
= range_end
,
1400 BUG_ON(!PageLocked(page
));
1402 req
= nfs_page_find_request(page
);
1405 if (test_bit(PG_NEED_COMMIT
, &req
->wb_flags
)) {
1406 nfs_release_request(req
);
1409 if (nfs_lock_request_dontget(req
)) {
1410 nfs_inode_remove_request(req
);
1412 * In case nfs_inode_remove_request has marked the
1413 * page as being dirty
1415 cancel_dirty_page(page
, PAGE_CACHE_SIZE
);
1416 nfs_unlock_request(req
);
1419 ret
= nfs_wait_on_request(req
);
1423 if (!PagePrivate(page
))
1425 ret
= nfs_sync_mapping_wait(page
->mapping
, &wbc
, FLUSH_INVALIDATE
);
1430 int nfs_wb_page_priority(struct inode
*inode
, struct page
*page
, int how
)
1432 loff_t range_start
= page_offset(page
);
1433 loff_t range_end
= range_start
+ (loff_t
)(PAGE_CACHE_SIZE
- 1);
1434 struct writeback_control wbc
= {
1435 .bdi
= page
->mapping
->backing_dev_info
,
1436 .sync_mode
= WB_SYNC_ALL
,
1437 .nr_to_write
= LONG_MAX
,
1438 .range_start
= range_start
,
1439 .range_end
= range_end
,
1443 BUG_ON(!PageLocked(page
));
1444 if (clear_page_dirty_for_io(page
)) {
1445 ret
= nfs_writepage_locked(page
, &wbc
);
1449 if (!PagePrivate(page
))
1451 ret
= nfs_sync_mapping_wait(page
->mapping
, &wbc
, how
);
1455 __mark_inode_dirty(inode
, I_DIRTY_PAGES
);
1460 * Write back all requests on one page - we do this before reading it.
1462 int nfs_wb_page(struct inode
*inode
, struct page
* page
)
1464 return nfs_wb_page_priority(inode
, page
, FLUSH_STABLE
);
1467 int __init
nfs_init_writepagecache(void)
1469 nfs_wdata_cachep
= kmem_cache_create("nfs_write_data",
1470 sizeof(struct nfs_write_data
),
1471 0, SLAB_HWCACHE_ALIGN
,
1473 if (nfs_wdata_cachep
== NULL
)
1476 nfs_wdata_mempool
= mempool_create_slab_pool(MIN_POOL_WRITE
,
1478 if (nfs_wdata_mempool
== NULL
)
1481 nfs_commit_mempool
= mempool_create_slab_pool(MIN_POOL_COMMIT
,
1483 if (nfs_commit_mempool
== NULL
)
1487 * NFS congestion size, scale with available memory.
1499 * This allows larger machines to have larger/more transfers.
1500 * Limit the default to 256M
1502 nfs_congestion_kb
= (16*int_sqrt(totalram_pages
)) << (PAGE_SHIFT
-10);
1503 if (nfs_congestion_kb
> 256*1024)
1504 nfs_congestion_kb
= 256*1024;
1509 void nfs_destroy_writepagecache(void)
1511 mempool_destroy(nfs_commit_mempool
);
1512 mempool_destroy(nfs_wdata_mempool
);
1513 kmem_cache_destroy(nfs_wdata_cachep
);