blob: 0eca6a5421063e5b638fe545ce6e5770de243850 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/write.c
3 *
4 * Writing file data over NFS.
5 *
6 * We do it like this: When a (user) process wishes to write data to an
7 * NFS file, a write request is allocated that contains the RPC task data
8 * plus some info on the page to be written, and added to the inode's
9 * write chain. If the process writes past the end of the page, an async
10 * RPC call to write the page is scheduled immediately; otherwise, the call
11 * is delayed for a few seconds.
12 *
13 * Just like readahead, no async I/O is performed if wsize < PAGE_SIZE.
14 *
15 * Write requests are kept on the inode's writeback list. Each entry in
16 * that list references the page (portion) to be written. When the
17 * cache timeout has expired, the RPC task is woken up, and tries to
18 * lock the page. As soon as it manages to do so, the request is moved
19 * from the writeback list to the writelock list.
20 *
21 * Note: we must make sure never to confuse the inode passed in the
22 * write_page request with the one in page->inode. As far as I understand
23 * it, these are different when doing a swap-out.
24 *
25 * To understand everything that goes on here and in the NFS read code,
26 * one should be aware that a page is locked in exactly one of the following
27 * cases:
28 *
29 * - A write request is in progress.
30 * - A user process is in generic_file_write/nfs_update_page
31 * - A user process is in generic_file_read
32 *
33 * Also note that because of the way pages are invalidated in
34 * nfs_revalidate_inode, the following assertions hold:
35 *
36 * - If a page is dirty, there will be no read requests (a page will
37 * not be re-read unless invalidated by nfs_revalidate_inode).
38 * - If the page is not uptodate, there will be no pending write
39 * requests, and no process will be in nfs_update_page.
40 *
41 * FIXME: Interaction with the vmscan routines is not optimal yet.
42 * Either vmscan must be made nfs-savvy, or we need a different page
43 * reclaim concept that supports something like FS-independent
44 * buffer_heads with a b_ops-> field.
45 *
46 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
47 */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/types.h>
50#include <linux/slab.h>
51#include <linux/mm.h>
52#include <linux/pagemap.h>
53#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <linux/writeback.h>
55
56#include <linux/sunrpc/clnt.h>
57#include <linux/nfs_fs.h>
58#include <linux/nfs_mount.h>
59#include <linux/nfs_page.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070060#include <linux/backing-dev.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/uaccess.h>
63#include <linux/smp_lock.h>
64
65#include "delegation.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050066#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050067#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define NFSDBG_FACILITY NFSDBG_PAGECACHE
70
71#define MIN_POOL_WRITE (32)
72#define MIN_POOL_COMMIT (4)
73
74/*
75 * Local function declarations
76 */
77static struct nfs_page * nfs_update_request(struct nfs_open_context*,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct page *,
79 unsigned int, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static int nfs_wait_on_write_congestion(struct address_space *, int);
81static int nfs_wait_on_requests(struct inode *, unsigned long, unsigned int);
Trond Myklebust3f442542006-09-17 14:46:44 -040082static long nfs_flush_mapping(struct address_space *mapping, struct writeback_control *wbc, int how);
Trond Myklebust1c759502006-10-09 16:18:38 -040083static int nfs_wb_page_priority(struct inode *inode, struct page *page, int how);
Trond Myklebust788e7a82006-03-20 13:44:27 -050084static const struct rpc_call_ops nfs_write_partial_ops;
85static const struct rpc_call_ops nfs_write_full_ops;
86static const struct rpc_call_ops nfs_commit_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88static kmem_cache_t *nfs_wdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050089static mempool_t *nfs_wdata_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static mempool_t *nfs_commit_mempool;
91
92static DECLARE_WAIT_QUEUE_HEAD(nfs_write_congestion);
93
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070094struct nfs_write_data *nfs_commit_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, SLAB_NOFS);
Chuck Lever40859d72005-11-30 18:09:02 -050097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (p) {
99 memset(p, 0, sizeof(*p));
100 INIT_LIST_HEAD(&p->pages);
101 }
102 return p;
103}
104
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500105void nfs_commit_rcu_free(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500107 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
Chuck Lever40859d72005-11-30 18:09:02 -0500108 if (p && (p->pagevec != &p->page_array[0]))
109 kfree(p->pagevec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 mempool_free(p, nfs_commit_mempool);
111}
112
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500113void nfs_commit_free(struct nfs_write_data *wdata)
114{
115 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_commit_rcu_free);
116}
117
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700118struct nfs_write_data *nfs_writedata_alloc(size_t len)
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500119{
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700120 unsigned int pagecount = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500121 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, SLAB_NOFS);
122
123 if (p) {
124 memset(p, 0, sizeof(*p));
125 INIT_LIST_HEAD(&p->pages);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700126 p->npages = pagecount;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400127 if (pagecount <= ARRAY_SIZE(p->page_array))
128 p->pagevec = p->page_array;
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500129 else {
Chuck Lever0d0b5cb2006-05-25 01:40:53 -0400130 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
131 if (!p->pagevec) {
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500132 mempool_free(p, nfs_wdata_mempool);
133 p = NULL;
134 }
135 }
136 }
137 return p;
138}
139
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500140static void nfs_writedata_rcu_free(struct rcu_head *head)
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500141{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500142 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500143 if (p && (p->pagevec != &p->page_array[0]))
144 kfree(p->pagevec);
145 mempool_free(p, nfs_wdata_mempool);
146}
147
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500148static void nfs_writedata_free(struct nfs_write_data *wdata)
149{
150 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_writedata_rcu_free);
151}
152
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100153void nfs_writedata_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 nfs_writedata_free(wdata);
156}
157
Trond Myklebust277459d2006-12-05 00:35:35 -0500158static struct nfs_page *nfs_page_find_request_locked(struct page *page)
159{
160 struct nfs_page *req = NULL;
161
162 if (PagePrivate(page)) {
163 req = (struct nfs_page *)page_private(page);
164 if (req != NULL)
165 atomic_inc(&req->wb_count);
166 }
167 return req;
168}
169
170static struct nfs_page *nfs_page_find_request(struct page *page)
171{
172 struct nfs_page *req = NULL;
173 spinlock_t *req_lock = &NFS_I(page->mapping->host)->req_lock;
174
175 spin_lock(req_lock);
176 req = nfs_page_find_request_locked(page);
177 spin_unlock(req_lock);
178 return req;
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181/* Adjust the file length if we're writing beyond the end */
182static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
183{
184 struct inode *inode = page->mapping->host;
185 loff_t end, i_size = i_size_read(inode);
186 unsigned long end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
187
188 if (i_size > 0 && page->index < end_index)
189 return;
190 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
191 if (i_size >= end)
192 return;
Chuck Lever91d5b472006-03-20 13:44:14 -0500193 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 i_size_write(inode, end);
195}
196
197/* We can set the PG_uptodate flag if we see that a write request
198 * covers the full page.
199 */
200static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (PageUptodate(page))
203 return;
204 if (base != 0)
205 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500206 if (count != nfs_page_length(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500208 if (count != PAGE_CACHE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 memclear_highpage_flush(page, count, PAGE_CACHE_SIZE - count);
Trond Myklebust49a70f22006-12-05 00:35:38 -0500210 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Trond Myklebuste21195a2006-12-05 00:35:39 -0500213static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 unsigned int offset, unsigned int count)
215{
216 struct nfs_page *req;
Trond Myklebuste21195a2006-12-05 00:35:39 -0500217 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Trond Myklebuste21195a2006-12-05 00:35:39 -0500219 for (;;) {
220 req = nfs_update_request(ctx, page, offset, count);
221 if (!IS_ERR(req))
222 break;
223 ret = PTR_ERR(req);
224 if (ret != -EBUSY)
225 return ret;
226 ret = nfs_wb_page(page->mapping->host, page);
227 if (ret != 0)
228 return ret;
229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Update file length */
231 nfs_grow_file(page, offset, count);
232 /* Set the PG_uptodate flag? */
233 nfs_mark_uptodate(page, offset, count);
234 nfs_unlock_request(req);
Trond Myklebustabd3e642006-01-03 09:55:02 +0100235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238static int wb_priority(struct writeback_control *wbc)
239{
240 if (wbc->for_reclaim)
241 return FLUSH_HIGHPRI;
242 if (wbc->for_kupdate)
243 return FLUSH_LOWPRI;
244 return 0;
245}
246
247/*
248 * Write an mmapped page to the server.
249 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500250static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct nfs_open_context *ctx;
253 struct inode *inode = page->mapping->host;
Trond Myklebust1a545332006-12-05 00:35:40 -0500254 struct nfs_page *req;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500255 unsigned offset;
Trond Myklebust1a545332006-12-05 00:35:40 -0500256 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Chuck Lever91d5b472006-03-20 13:44:14 -0500258 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
259 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
260
Trond Myklebust1a545332006-12-05 00:35:40 -0500261 req = nfs_page_find_request(page);
262 if (req != NULL) {
263 int flushme = test_bit(PG_NEED_FLUSH, &req->wb_flags);
264 nfs_release_request(req);
265 if (!flushme)
266 goto out;
267 /* Ensure we've flushed out the invalid write */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500268 nfs_wb_page_priority(inode, page, wb_priority(wbc) | FLUSH_STABLE | FLUSH_NOWRITEPAGE);
Trond Myklebust1a545332006-12-05 00:35:40 -0500269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Trond Myklebust49a70f22006-12-05 00:35:38 -0500271 offset = nfs_page_length(page);
272 if (!offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 goto out;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500274
Trond Myklebustd5308382005-11-04 15:33:38 -0500275 ctx = nfs_find_open_context(inode, NULL, FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (ctx == NULL) {
277 err = -EBADF;
278 goto out;
279 }
Trond Myklebust200baa22006-12-05 00:35:40 -0500280 err = nfs_writepage_setup(ctx, page, 0, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 put_nfs_open_context(ctx);
Trond Myklebust200baa22006-12-05 00:35:40 -0500282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283out:
Trond Myklebust200baa22006-12-05 00:35:40 -0500284 if (!wbc->for_writepages)
285 nfs_flush_mapping(page->mapping, wbc, wb_priority(wbc));
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500286 return err;
287}
288
289int nfs_writepage(struct page *page, struct writeback_control *wbc)
290{
291 int err;
292
293 err = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return err;
296}
297
298/*
299 * Note: causes nfs_update_request() to block on the assumption
300 * that the writeback is generated due to memory pressure.
301 */
302int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
303{
304 struct backing_dev_info *bdi = mapping->backing_dev_info;
305 struct inode *inode = mapping->host;
306 int err;
307
Chuck Lever91d5b472006-03-20 13:44:14 -0500308 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 err = generic_writepages(mapping, wbc);
311 if (err)
312 return err;
313 while (test_and_set_bit(BDI_write_congested, &bdi->state) != 0) {
314 if (wbc->nonblocking)
315 return 0;
316 nfs_wait_on_write_congestion(mapping, 0);
317 }
Trond Myklebust28c69252006-09-16 13:04:50 -0400318 err = nfs_flush_mapping(mapping, wbc, wb_priority(wbc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (err < 0)
320 goto out;
Chuck Lever91d5b472006-03-20 13:44:14 -0500321 nfs_add_stats(inode, NFSIOS_WRITEPAGES, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (!wbc->nonblocking && wbc->sync_mode == WB_SYNC_ALL) {
323 err = nfs_wait_on_requests(inode, 0, 0);
324 if (err < 0)
325 goto out;
326 }
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000327 err = nfs_commit_inode(inode, wb_priority(wbc));
Trond Myklebust3f442542006-09-17 14:46:44 -0400328 if (err > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330out:
331 clear_bit(BDI_write_congested, &bdi->state);
332 wake_up_all(&nfs_write_congestion);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700333 congestion_end(WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return err;
335}
336
337/*
338 * Insert a write request into an inode
339 */
340static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
341{
342 struct nfs_inode *nfsi = NFS_I(inode);
343 int error;
344
345 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
346 BUG_ON(error == -EEXIST);
347 if (error)
348 return error;
349 if (!nfsi->npages) {
350 igrab(inode);
351 nfs_begin_data_update(inode);
352 if (nfs_have_delegation(inode, FMODE_WRITE))
353 nfsi->change_attr++;
354 }
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500355 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500356 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 nfsi->npages++;
358 atomic_inc(&req->wb_count);
359 return 0;
360}
361
362/*
363 * Insert a write request into an inode
364 */
365static void nfs_inode_remove_request(struct nfs_page *req)
366{
367 struct inode *inode = req->wb_context->dentry->d_inode;
368 struct nfs_inode *nfsi = NFS_I(inode);
369
370 BUG_ON (!NFS_WBACK_BUSY(req));
371
372 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500373 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500374 ClearPagePrivate(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
376 nfsi->npages--;
377 if (!nfsi->npages) {
378 spin_unlock(&nfsi->req_lock);
Trond Myklebust951a1432005-06-22 17:16:30 +0000379 nfs_end_data_update(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 iput(inode);
381 } else
382 spin_unlock(&nfsi->req_lock);
383 nfs_clear_request(req);
384 nfs_release_request(req);
385}
386
387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Add a request to the inode's dirty list.
389 */
390static void
391nfs_mark_request_dirty(struct nfs_page *req)
392{
393 struct inode *inode = req->wb_context->dentry->d_inode;
394 struct nfs_inode *nfsi = NFS_I(inode);
395
396 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000397 radix_tree_tag_set(&nfsi->nfs_page_tree,
398 req->wb_index, NFS_PAGE_TAG_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 nfs_list_add_request(req, &nfsi->dirty);
400 nfsi->ndirty++;
401 spin_unlock(&nfsi->req_lock);
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -0700402 inc_zone_page_state(req->wb_page, NR_FILE_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 mark_inode_dirty(inode);
404}
405
406/*
407 * Check if a request is dirty
408 */
409static inline int
410nfs_dirty_request(struct nfs_page *req)
411{
412 struct nfs_inode *nfsi = NFS_I(req->wb_context->dentry->d_inode);
413 return !list_empty(&req->wb_list) && req->wb_list_head == &nfsi->dirty;
414}
415
416#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
417/*
418 * Add a request to the inode's commit list.
419 */
420static void
421nfs_mark_request_commit(struct nfs_page *req)
422{
423 struct inode *inode = req->wb_context->dentry->d_inode;
424 struct nfs_inode *nfsi = NFS_I(inode);
425
426 spin_lock(&nfsi->req_lock);
427 nfs_list_add_request(req, &nfsi->commit);
428 nfsi->ncommit++;
429 spin_unlock(&nfsi->req_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700430 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 mark_inode_dirty(inode);
432}
433#endif
434
435/*
436 * Wait for a request to complete.
437 *
438 * Interruptible by signals only if mounted with intr flag.
439 */
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500440static int nfs_wait_on_requests_locked(struct inode *inode, unsigned long idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct nfs_inode *nfsi = NFS_I(inode);
443 struct nfs_page *req;
444 unsigned long idx_end, next;
445 unsigned int res = 0;
446 int error;
447
448 if (npages == 0)
449 idx_end = ~0;
450 else
451 idx_end = idx_start + npages - 1;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 next = idx_start;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000454 while (radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree, (void **)&req, next, 1, NFS_PAGE_TAG_WRITEBACK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (req->wb_index > idx_end)
456 break;
457
458 next = req->wb_index + 1;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000459 BUG_ON(!NFS_WBACK_BUSY(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 atomic_inc(&req->wb_count);
462 spin_unlock(&nfsi->req_lock);
463 error = nfs_wait_on_request(req);
464 nfs_release_request(req);
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500465 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (error < 0)
467 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 res++;
469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return res;
471}
472
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500473static int nfs_wait_on_requests(struct inode *inode, unsigned long idx_start, unsigned int npages)
474{
475 struct nfs_inode *nfsi = NFS_I(inode);
476 int ret;
477
478 spin_lock(&nfsi->req_lock);
479 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
480 spin_unlock(&nfsi->req_lock);
481 return ret;
482}
483
Trond Myklebust83715ad2006-07-05 13:17:12 -0400484static void nfs_cancel_dirty_list(struct list_head *head)
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400485{
486 struct nfs_page *req;
487 while(!list_empty(head)) {
488 req = nfs_list_entry(head->next);
489 nfs_list_remove_request(req);
490 nfs_inode_remove_request(req);
491 nfs_clear_page_writeback(req);
492 }
493}
494
Trond Myklebust83715ad2006-07-05 13:17:12 -0400495static void nfs_cancel_commit_list(struct list_head *head)
496{
497 struct nfs_page *req;
498
499 while(!list_empty(head)) {
500 req = nfs_list_entry(head->next);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700501 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400502 nfs_list_remove_request(req);
503 nfs_inode_remove_request(req);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700504 nfs_unlock_request(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400505 }
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
509/*
510 * nfs_scan_commit - Scan an inode for commit requests
511 * @inode: NFS inode to scan
512 * @dst: destination list
513 * @idx_start: lower bound of page->index to scan.
514 * @npages: idx_start + npages sets the upper bound to scan.
515 *
516 * Moves requests from the inode's 'commit' request list.
517 * The requests are *not* checked to ensure that they form a contiguous set.
518 */
519static int
520nfs_scan_commit(struct inode *inode, struct list_head *dst, unsigned long idx_start, unsigned int npages)
521{
522 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000523 int res = 0;
524
525 if (nfsi->ncommit != 0) {
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400526 res = nfs_scan_list(nfsi, &nfsi->commit, dst, idx_start, npages);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000527 nfsi->ncommit -= res;
528 if ((nfsi->ncommit == 0) != list_empty(&nfsi->commit))
529 printk(KERN_ERR "NFS: desynchronized value of nfs_i.ncommit.\n");
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return res;
532}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500533#else
534static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, unsigned long idx_start, unsigned int npages)
535{
536 return 0;
537}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#endif
539
540static int nfs_wait_on_write_congestion(struct address_space *mapping, int intr)
541{
542 struct backing_dev_info *bdi = mapping->backing_dev_info;
543 DEFINE_WAIT(wait);
544 int ret = 0;
545
546 might_sleep();
547
548 if (!bdi_write_congested(bdi))
549 return 0;
Chuck Lever91d5b472006-03-20 13:44:14 -0500550
551 nfs_inc_stats(mapping->host, NFSIOS_CONGESTIONWAIT);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (intr) {
554 struct rpc_clnt *clnt = NFS_CLIENT(mapping->host);
555 sigset_t oldset;
556
557 rpc_clnt_sigmask(clnt, &oldset);
558 prepare_to_wait(&nfs_write_congestion, &wait, TASK_INTERRUPTIBLE);
559 if (bdi_write_congested(bdi)) {
560 if (signalled())
561 ret = -ERESTARTSYS;
562 else
563 schedule();
564 }
565 rpc_clnt_sigunmask(clnt, &oldset);
566 } else {
567 prepare_to_wait(&nfs_write_congestion, &wait, TASK_UNINTERRUPTIBLE);
568 if (bdi_write_congested(bdi))
569 schedule();
570 }
571 finish_wait(&nfs_write_congestion, &wait);
572 return ret;
573}
574
575
576/*
577 * Try to update any existing write request, or create one if there is none.
578 * In order to match, the request's credentials must match those of
579 * the calling process.
580 *
581 * Note: Should always be called with the Page Lock held!
582 */
583static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
Trond Myklebuste21195a2006-12-05 00:35:39 -0500584 struct page *page, unsigned int offset, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Trond Myklebuste21195a2006-12-05 00:35:39 -0500586 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct nfs_inode *nfsi = NFS_I(inode);
588 struct nfs_page *req, *new = NULL;
589 unsigned long rqend, end;
590
591 end = offset + bytes;
592
Trond Myklebuste21195a2006-12-05 00:35:39 -0500593 if (nfs_wait_on_write_congestion(page->mapping, NFS_SERVER(inode)->flags & NFS_MOUNT_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return ERR_PTR(-ERESTARTSYS);
595 for (;;) {
596 /* Loop over all inode entries and see if we find
597 * A request for the page we wish to update
598 */
599 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500600 req = nfs_page_find_request_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (req) {
602 if (!nfs_lock_request_dontget(req)) {
603 int error;
Trond Myklebust277459d2006-12-05 00:35:35 -0500604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 spin_unlock(&nfsi->req_lock);
606 error = nfs_wait_on_request(req);
607 nfs_release_request(req);
Neil Brown1dd594b2006-03-20 13:44:04 -0500608 if (error < 0) {
609 if (new)
610 nfs_release_request(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return ERR_PTR(error);
Neil Brown1dd594b2006-03-20 13:44:04 -0500612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 continue;
614 }
615 spin_unlock(&nfsi->req_lock);
616 if (new)
617 nfs_release_request(new);
618 break;
619 }
620
621 if (new) {
622 int error;
623 nfs_lock_request_dontget(new);
624 error = nfs_inode_add_request(inode, new);
625 if (error) {
626 spin_unlock(&nfsi->req_lock);
627 nfs_unlock_request(new);
628 return ERR_PTR(error);
629 }
630 spin_unlock(&nfsi->req_lock);
631 nfs_mark_request_dirty(new);
632 return new;
633 }
634 spin_unlock(&nfsi->req_lock);
635
636 new = nfs_create_request(ctx, inode, page, offset, bytes);
637 if (IS_ERR(new))
638 return new;
639 }
640
641 /* We have a request for our page.
642 * If the creds don't match, or the
643 * page addresses don't match,
644 * tell the caller to wait on the conflicting
645 * request.
646 */
647 rqend = req->wb_offset + req->wb_bytes;
648 if (req->wb_context != ctx
649 || req->wb_page != page
650 || !nfs_dirty_request(req)
651 || offset > rqend || end < req->wb_offset) {
652 nfs_unlock_request(req);
653 return ERR_PTR(-EBUSY);
654 }
655
656 /* Okay, the request matches. Update the region */
657 if (offset < req->wb_offset) {
658 req->wb_offset = offset;
659 req->wb_pgbase = offset;
660 req->wb_bytes = rqend - req->wb_offset;
661 }
662
663 if (end > rqend)
664 req->wb_bytes = end - req->wb_offset;
665
666 return req;
667}
668
669int nfs_flush_incompatible(struct file *file, struct page *page)
670{
671 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500673 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /*
675 * Look for a request corresponding to this page. If there
676 * is one, and it belongs to another file, we flush it out
677 * before we try to copy anything into the page. Do this
678 * due to the lack of an ACCESS-type call in NFSv2.
679 * Also do the same if we find a request from an existing
680 * dropped page.
681 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500682 do {
683 req = nfs_page_find_request(page);
684 if (req == NULL)
685 return 0;
686 do_flush = req->wb_page != page || req->wb_context != ctx
687 || test_bit(PG_NEED_FLUSH, &req->wb_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500689 if (!do_flush)
690 return 0;
691 status = nfs_wb_page(page->mapping->host, page);
692 } while (status == 0);
693 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696/*
697 * Update and possibly write a cached page of an NFS file.
698 *
699 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
700 * things with a page scheduled for an RPC call (e.g. invalidate it).
701 */
702int nfs_updatepage(struct file *file, struct page *page,
703 unsigned int offset, unsigned int count)
704{
705 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 int status = 0;
708
Chuck Lever91d5b472006-03-20 13:44:14 -0500709 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500712 file->f_dentry->d_parent->d_name.name,
713 file->f_dentry->d_name.name, count,
714 (long long)(page_offset(page) +offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /* If we're not using byte range locks, and we know the page
717 * is entirely in cache, it may be more efficient to avoid
718 * fragmenting write requests.
719 */
Trond Myklebustab0a3db2005-06-22 17:16:30 +0000720 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500721 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724
Trond Myklebuste21195a2006-12-05 00:35:39 -0500725 status = nfs_writepage_setup(ctx, page, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
728 status, (long long)i_size_read(inode));
729 if (status < 0)
730 ClearPageUptodate(page);
731 return status;
732}
733
734static void nfs_writepage_release(struct nfs_page *req)
735{
736 end_page_writeback(req->wb_page);
737
738#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
739 if (!PageError(req->wb_page)) {
740 if (NFS_NEED_RESCHED(req)) {
741 nfs_mark_request_dirty(req);
742 goto out;
743 } else if (NFS_NEED_COMMIT(req)) {
744 nfs_mark_request_commit(req);
745 goto out;
746 }
747 }
748 nfs_inode_remove_request(req);
749
750out:
751 nfs_clear_commit(req);
752 nfs_clear_reschedule(req);
753#else
754 nfs_inode_remove_request(req);
755#endif
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000756 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759static inline int flush_task_priority(int how)
760{
761 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
762 case FLUSH_HIGHPRI:
763 return RPC_PRIORITY_HIGH;
764 case FLUSH_LOWPRI:
765 return RPC_PRIORITY_LOW;
766 }
767 return RPC_PRIORITY_NORMAL;
768}
769
770/*
771 * Set up the argument/result storage required for the RPC call.
772 */
773static void nfs_write_rpcsetup(struct nfs_page *req,
774 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500775 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 unsigned int count, unsigned int offset,
777 int how)
778{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -0500780 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 /* Set up the RPC argument and reply structs
783 * NB: take care not to mess about with data->commit et al. */
784
785 data->req = req;
786 data->inode = inode = req->wb_context->dentry->d_inode;
787 data->cred = req->wb_context->cred;
788
789 data->args.fh = NFS_FH(inode);
790 data->args.offset = req_offset(req) + offset;
791 data->args.pgbase = req->wb_pgbase + offset;
792 data->args.pages = data->pagevec;
793 data->args.count = count;
794 data->args.context = req->wb_context;
795
796 data->res.fattr = &data->fattr;
797 data->res.count = count;
798 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400799 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Trond Myklebust788e7a82006-03-20 13:44:27 -0500801 /* Set up the initial task struct. */
802 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
803 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 NFS_PROTO(inode)->write_setup(data, how);
805
806 data->task.tk_priority = flush_task_priority(how);
807 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 dprintk("NFS: %4d initiated write call (req %s/%Ld, %u bytes @ offset %Lu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500810 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 inode->i_sb->s_id,
812 (long long)NFS_FILEID(inode),
813 count,
814 (unsigned long long)data->args.offset);
815}
816
817static void nfs_execute_write(struct nfs_write_data *data)
818{
819 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
820 sigset_t oldset;
821
822 rpc_clnt_sigmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 rpc_execute(&data->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 rpc_clnt_sigunmask(clnt, &oldset);
825}
826
827/*
828 * Generate multiple small requests to write out a single
829 * contiguous dirty area on one page.
830 */
Trond Myklebust7d46a492006-03-20 13:44:50 -0500831static int nfs_flush_multi(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
833 struct nfs_page *req = nfs_list_entry(head->next);
834 struct page *page = req->wb_page;
835 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700836 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
837 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int requests = 0;
839 LIST_HEAD(list);
840
841 nfs_list_remove_request(req);
842
843 nbytes = req->wb_bytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700844 do {
845 size_t len = min(nbytes, wsize);
846
847 data = nfs_writedata_alloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (!data)
849 goto out_bad;
850 list_add(&data->pages, &list);
851 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700852 nbytes -= len;
853 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 atomic_set(&req->wb_complete, requests);
855
856 ClearPageError(page);
Trond Myklebustbb713d62005-12-03 15:20:14 -0500857 set_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 offset = 0;
859 nbytes = req->wb_bytes;
860 do {
861 data = list_entry(list.next, struct nfs_write_data, pages);
862 list_del_init(&data->pages);
863
864 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (nbytes > wsize) {
Trond Myklebust788e7a82006-03-20 13:44:27 -0500867 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
868 wsize, offset, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 offset += wsize;
870 nbytes -= wsize;
871 } else {
Trond Myklebust788e7a82006-03-20 13:44:27 -0500872 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
873 nbytes, offset, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 nbytes = 0;
875 }
876 nfs_execute_write(data);
877 } while (nbytes != 0);
878
879 return 0;
880
881out_bad:
882 while (!list_empty(&list)) {
883 data = list_entry(list.next, struct nfs_write_data, pages);
884 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500885 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 nfs_mark_request_dirty(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000888 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -ENOMEM;
890}
891
892/*
893 * Create an RPC task for the given write request and kick it.
894 * The page must have been locked by the caller.
895 *
896 * It may happen that the page we're passed is not marked dirty.
897 * This is the case if nfs_updatepage detects a conflicting request
898 * that has been written but not committed.
899 */
Trond Myklebust7d46a492006-03-20 13:44:50 -0500900static int nfs_flush_one(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct nfs_page *req;
903 struct page **pages;
904 struct nfs_write_data *data;
905 unsigned int count;
906
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700907 data = nfs_writedata_alloc(NFS_SERVER(inode)->wsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (!data)
909 goto out_bad;
910
911 pages = data->pagevec;
912 count = 0;
913 while (!list_empty(head)) {
914 req = nfs_list_entry(head->next);
915 nfs_list_remove_request(req);
916 nfs_list_add_request(req, &data->pages);
917 ClearPageError(req->wb_page);
Trond Myklebustbb713d62005-12-03 15:20:14 -0500918 set_page_writeback(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 *pages++ = req->wb_page;
920 count += req->wb_bytes;
921 }
922 req = nfs_list_entry(data->pages.next);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* Set up the argument struct */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500925 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 nfs_execute_write(data);
928 return 0;
929 out_bad:
930 while (!list_empty(head)) {
931 struct nfs_page *req = nfs_list_entry(head->next);
932 nfs_list_remove_request(req);
933 nfs_mark_request_dirty(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000934 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936 return -ENOMEM;
937}
938
Trond Myklebust7d46a492006-03-20 13:44:50 -0500939static int nfs_flush_list(struct inode *inode, struct list_head *head, int npages, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 LIST_HEAD(one_request);
Trond Myklebust7d46a492006-03-20 13:44:50 -0500942 int (*flush_one)(struct inode *, struct list_head *, int);
943 struct nfs_page *req;
944 int wpages = NFS_SERVER(inode)->wpages;
945 int wsize = NFS_SERVER(inode)->wsize;
946 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Trond Myklebust7d46a492006-03-20 13:44:50 -0500948 flush_one = nfs_flush_one;
949 if (wsize < PAGE_CACHE_SIZE)
950 flush_one = nfs_flush_multi;
951 /* For single writes, FLUSH_STABLE is more efficient */
952 if (npages <= wpages && npages == NFS_I(inode)->npages
953 && nfs_list_entry(head->next)->wb_bytes <= wsize)
954 how |= FLUSH_STABLE;
955
956 do {
957 nfs_coalesce_requests(head, &one_request, wpages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 req = nfs_list_entry(one_request.next);
Trond Myklebust7d46a492006-03-20 13:44:50 -0500959 error = flush_one(inode, &one_request, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (error < 0)
Trond Myklebust7d46a492006-03-20 13:44:50 -0500961 goto out_err;
962 } while (!list_empty(head));
963 return 0;
964out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 while (!list_empty(head)) {
966 req = nfs_list_entry(head->next);
967 nfs_list_remove_request(req);
968 nfs_mark_request_dirty(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000969 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
971 return error;
972}
973
974/*
975 * Handle a write reply that flushed part of a page.
976 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500977static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500979 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct nfs_page *req = data->req;
981 struct page *page = req->wb_page;
982
983 dprintk("NFS: write (%s/%Ld %d@%Ld)",
984 req->wb_context->dentry->d_inode->i_sb->s_id,
985 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
986 req->wb_bytes,
987 (long long)req_offset(req));
988
Trond Myklebust788e7a82006-03-20 13:44:27 -0500989 if (nfs_writeback_done(task, data) != 0)
990 return;
991
992 if (task->tk_status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 ClearPageUptodate(page);
994 SetPageError(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500995 req->wb_context->error = task->tk_status;
996 dprintk(", error = %d\n", task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 } else {
998#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
999 if (data->verf.committed < NFS_FILE_SYNC) {
1000 if (!NFS_NEED_COMMIT(req)) {
1001 nfs_defer_commit(req);
1002 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1003 dprintk(" defer commit\n");
1004 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
1005 nfs_defer_reschedule(req);
1006 dprintk(" server reboot detected\n");
1007 }
1008 } else
1009#endif
1010 dprintk(" OK\n");
1011 }
1012
1013 if (atomic_dec_and_test(&req->wb_complete))
1014 nfs_writepage_release(req);
1015}
1016
Trond Myklebust788e7a82006-03-20 13:44:27 -05001017static const struct rpc_call_ops nfs_write_partial_ops = {
1018 .rpc_call_done = nfs_writeback_done_partial,
1019 .rpc_release = nfs_writedata_release,
1020};
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022/*
1023 * Handle a write reply that flushes a whole page.
1024 *
1025 * FIXME: There is an inherent race with invalidate_inode_pages and
1026 * writebacks since the page->count is kept > 1 for as long
1027 * as the page has a write request pending.
1028 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001029static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001031 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 struct nfs_page *req;
1033 struct page *page;
1034
Trond Myklebust788e7a82006-03-20 13:44:27 -05001035 if (nfs_writeback_done(task, data) != 0)
1036 return;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /* Update attributes as result of writeback. */
1039 while (!list_empty(&data->pages)) {
1040 req = nfs_list_entry(data->pages.next);
1041 nfs_list_remove_request(req);
1042 page = req->wb_page;
1043
1044 dprintk("NFS: write (%s/%Ld %d@%Ld)",
1045 req->wb_context->dentry->d_inode->i_sb->s_id,
1046 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1047 req->wb_bytes,
1048 (long long)req_offset(req));
1049
Trond Myklebust788e7a82006-03-20 13:44:27 -05001050 if (task->tk_status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 ClearPageUptodate(page);
1052 SetPageError(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001053 req->wb_context->error = task->tk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 end_page_writeback(page);
1055 nfs_inode_remove_request(req);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001056 dprintk(", error = %d\n", task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 goto next;
1058 }
1059 end_page_writeback(page);
1060
1061#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1062 if (data->args.stable != NFS_UNSTABLE || data->verf.committed == NFS_FILE_SYNC) {
1063 nfs_inode_remove_request(req);
1064 dprintk(" OK\n");
1065 goto next;
1066 }
1067 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1068 nfs_mark_request_commit(req);
1069 dprintk(" marked for commit\n");
1070#else
1071 nfs_inode_remove_request(req);
1072#endif
1073 next:
Trond Myklebustc6a556b2005-06-22 17:16:30 +00001074 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076}
1077
Trond Myklebust788e7a82006-03-20 13:44:27 -05001078static const struct rpc_call_ops nfs_write_full_ops = {
1079 .rpc_call_done = nfs_writeback_done_full,
1080 .rpc_release = nfs_writedata_release,
1081};
1082
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/*
1085 * This function is called when the WRITE call is complete.
1086 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001087int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 struct nfs_writeargs *argp = &data->args;
1090 struct nfs_writeres *resp = &data->res;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001091 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 dprintk("NFS: %4d nfs_writeback_done (status %d)\n",
1094 task->tk_pid, task->tk_status);
1095
Chuck Leverf551e442006-09-20 14:33:04 -04001096 /*
1097 * ->write_done will attempt to use post-op attributes to detect
1098 * conflicting writes by other clients. A strict interpretation
1099 * of close-to-open would allow us to continue caching even if
1100 * another writer had changed the file, but some applications
1101 * depend on tighter cache coherency when writing.
1102 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001103 status = NFS_PROTO(data->inode)->write_done(task, data);
1104 if (status != 0)
1105 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001106 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1109 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1110 /* We tried a write call, but the server did not
1111 * commit data to stable storage even though we
1112 * requested it.
1113 * Note: There is a known bug in Tru64 < 5.0 in which
1114 * the server reports NFS_DATA_SYNC, but performs
1115 * NFS_FILE_SYNC. We therefore implement this checking
1116 * as a dprintk() in order to avoid filling syslog.
1117 */
1118 static unsigned long complain;
1119
1120 if (time_before(complain, jiffies)) {
1121 dprintk("NFS: faulty NFS server %s:"
1122 " (committed = %d) != (stable = %d)\n",
David Howells54ceac42006-08-22 20:06:13 -04001123 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 resp->verf->committed, argp->stable);
1125 complain = jiffies + 300 * HZ;
1126 }
1127 }
1128#endif
1129 /* Is this a short write? */
1130 if (task->tk_status >= 0 && resp->count < argp->count) {
1131 static unsigned long complain;
1132
Chuck Lever91d5b472006-03-20 13:44:14 -05001133 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* Has the server at least made some progress? */
1136 if (resp->count != 0) {
1137 /* Was this an NFSv2 write or an NFSv3 stable write? */
1138 if (resp->verf->committed != NFS_UNSTABLE) {
1139 /* Resend from where the server left off */
1140 argp->offset += resp->count;
1141 argp->pgbase += resp->count;
1142 argp->count -= resp->count;
1143 } else {
1144 /* Resend as a stable write in order to avoid
1145 * headaches in the case of a server crash.
1146 */
1147 argp->stable = NFS_FILE_SYNC;
1148 }
1149 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001150 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152 if (time_before(complain, jiffies)) {
1153 printk(KERN_WARNING
1154 "NFS: Server wrote zero bytes, expected %u.\n",
1155 argp->count);
1156 complain = jiffies + 300 * HZ;
1157 }
1158 /* Can't do anything about it except throw an error. */
1159 task->tk_status = -EIO;
1160 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
1164
1165#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001166void nfs_commit_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 nfs_commit_free(wdata);
1169}
1170
1171/*
1172 * Set up the argument/result storage required for the RPC call.
1173 */
1174static void nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001175 struct nfs_write_data *data,
1176 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001178 struct nfs_page *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001180 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 /* Set up the RPC argument and reply structs
1183 * NB: take care not to mess about with data->commit et al. */
1184
1185 list_splice_init(head, &data->pages);
1186 first = nfs_list_entry(data->pages.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 inode = first->wb_context->dentry->d_inode;
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 data->inode = inode;
1190 data->cred = first->wb_context->cred;
1191
1192 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001193 /* Note: we always request a commit of the entire inode */
1194 data->args.offset = 0;
1195 data->args.count = 0;
1196 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 data->res.fattr = &data->fattr;
1198 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001199 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001200
1201 /* Set up the initial task struct. */
1202 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1203 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 NFS_PROTO(inode)->commit_setup(data, how);
1205
1206 data->task.tk_priority = flush_task_priority(how);
1207 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Chuck Lever0bbacc42005-11-01 16:53:32 -05001209 dprintk("NFS: %4d initiated commit call\n", data->task.tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212/*
1213 * Commit dirty pages
1214 */
1215static int
Chuck Lever40859d72005-11-30 18:09:02 -05001216nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct nfs_write_data *data;
1219 struct nfs_page *req;
1220
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001221 data = nfs_commit_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 if (!data)
1224 goto out_bad;
1225
1226 /* Set up the argument struct */
1227 nfs_commit_rpcsetup(head, data, how);
1228
1229 nfs_execute_write(data);
1230 return 0;
1231 out_bad:
1232 while (!list_empty(head)) {
1233 req = nfs_list_entry(head->next);
1234 nfs_list_remove_request(req);
1235 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001236 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust5c2d97c2006-09-18 23:20:35 -04001237 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239 return -ENOMEM;
1240}
1241
1242/*
1243 * COMMIT call returned
1244 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001245static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001247 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 struct nfs_page *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 dprintk("NFS: %4d nfs_commit_done (status %d)\n",
1251 task->tk_pid, task->tk_status);
1252
Trond Myklebust788e7a82006-03-20 13:44:27 -05001253 /* Call the NFS version-specific code */
1254 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1255 return;
1256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 while (!list_empty(&data->pages)) {
1258 req = nfs_list_entry(data->pages.next);
1259 nfs_list_remove_request(req);
Christoph Lameterfd39fc82006-06-30 01:55:40 -07001260 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
1263 req->wb_context->dentry->d_inode->i_sb->s_id,
1264 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1265 req->wb_bytes,
1266 (long long)req_offset(req));
1267 if (task->tk_status < 0) {
1268 req->wb_context->error = task->tk_status;
1269 nfs_inode_remove_request(req);
1270 dprintk(", error = %d\n", task->tk_status);
1271 goto next;
1272 }
1273
1274 /* Okay, COMMIT succeeded, apparently. Check the verifier
1275 * returned by the server against all stored verfs. */
1276 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1277 /* We have a match */
1278 nfs_inode_remove_request(req);
1279 dprintk(" OK\n");
1280 goto next;
1281 }
1282 /* We have a mismatch. Write the page again */
1283 dprintk(" mismatch\n");
1284 nfs_mark_request_dirty(req);
1285 next:
Trond Myklebustc6a556b2005-06-22 17:16:30 +00001286 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001289
1290static const struct rpc_call_ops nfs_commit_ops = {
1291 .rpc_call_done = nfs_commit_done,
1292 .rpc_release = nfs_commit_release,
1293};
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001294#else
1295static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1296{
1297 return 0;
1298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299#endif
1300
Trond Myklebust3f442542006-09-17 14:46:44 -04001301static long nfs_flush_mapping(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Trond Myklebust28c69252006-09-16 13:04:50 -04001303 struct nfs_inode *nfsi = NFS_I(mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 LIST_HEAD(head);
Trond Myklebust3f442542006-09-17 14:46:44 -04001305 long res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 spin_lock(&nfsi->req_lock);
Trond Myklebust3f442542006-09-17 14:46:44 -04001308 res = nfs_scan_dirty(mapping, wbc, &head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 spin_unlock(&nfsi->req_lock);
Trond Myklebustab0a3db2005-06-22 17:16:30 +00001310 if (res) {
Trond Myklebust28c69252006-09-16 13:04:50 -04001311 int error = nfs_flush_list(mapping->host, &head, res, how);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001312 if (error < 0)
1313 return error;
Trond Myklebustab0a3db2005-06-22 17:16:30 +00001314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return res;
1316}
1317
1318#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001319int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct nfs_inode *nfsi = NFS_I(inode);
1322 LIST_HEAD(head);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001323 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001326 res = nfs_scan_commit(inode, &head, 0, 0);
1327 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001329 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001330 if (error < 0)
1331 return error;
1332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return res;
1334}
1335#endif
1336
Trond Myklebust1c759502006-10-09 16:18:38 -04001337long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Trond Myklebust1c759502006-10-09 16:18:38 -04001339 struct inode *inode = mapping->host;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001340 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c759502006-10-09 16:18:38 -04001341 unsigned long idx_start, idx_end;
1342 unsigned int npages = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001343 LIST_HEAD(head);
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001344 int nocommit = how & FLUSH_NOCOMMIT;
Trond Myklebust3f442542006-09-17 14:46:44 -04001345 long pages, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Trond Myklebust1c759502006-10-09 16:18:38 -04001347 /* FIXME */
1348 if (wbc->range_cyclic)
1349 idx_start = 0;
1350 else {
1351 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1352 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1353 if (idx_end > idx_start) {
1354 unsigned long l_npages = 1 + idx_end - idx_start;
1355 npages = l_npages;
1356 if (sizeof(npages) != sizeof(l_npages) &&
1357 (unsigned long)npages != l_npages)
1358 npages = 0;
1359 }
1360 }
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001361 how &= ~FLUSH_NOCOMMIT;
1362 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 do {
Trond Myklebust1c759502006-10-09 16:18:38 -04001364 wbc->pages_skipped = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001365 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1366 if (ret != 0)
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001367 continue;
Trond Myklebust1c759502006-10-09 16:18:38 -04001368 pages = nfs_scan_dirty(mapping, wbc, &head);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001369 if (pages != 0) {
1370 spin_unlock(&nfsi->req_lock);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001371 if (how & FLUSH_INVALIDATE) {
Trond Myklebust83715ad2006-07-05 13:17:12 -04001372 nfs_cancel_dirty_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001373 ret = pages;
1374 } else
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001375 ret = nfs_flush_list(inode, &head, pages, how);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001376 spin_lock(&nfsi->req_lock);
1377 continue;
1378 }
Trond Myklebust1c759502006-10-09 16:18:38 -04001379 if (wbc->pages_skipped != 0)
1380 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001381 if (nocommit)
1382 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001383 pages = nfs_scan_commit(inode, &head, idx_start, npages);
Trond Myklebust1c759502006-10-09 16:18:38 -04001384 if (pages == 0) {
1385 if (wbc->pages_skipped != 0)
1386 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001387 break;
Trond Myklebust1c759502006-10-09 16:18:38 -04001388 }
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001389 if (how & FLUSH_INVALIDATE) {
1390 spin_unlock(&nfsi->req_lock);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001391 nfs_cancel_commit_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001392 ret = pages;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001393 spin_lock(&nfsi->req_lock);
1394 continue;
1395 }
1396 pages += nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001397 spin_unlock(&nfsi->req_lock);
1398 ret = nfs_commit_list(inode, &head, how);
1399 spin_lock(&nfsi->req_lock);
1400 } while (ret >= 0);
1401 spin_unlock(&nfsi->req_lock);
1402 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Trond Myklebust1c759502006-10-09 16:18:38 -04001405/*
1406 * flush the inode to disk.
1407 */
1408int nfs_wb_all(struct inode *inode)
1409{
1410 struct address_space *mapping = inode->i_mapping;
1411 struct writeback_control wbc = {
1412 .bdi = mapping->backing_dev_info,
1413 .sync_mode = WB_SYNC_ALL,
1414 .nr_to_write = LONG_MAX,
1415 .range_cyclic = 1,
1416 };
1417 int ret;
1418
1419 ret = nfs_sync_mapping_wait(mapping, &wbc, 0);
1420 if (ret >= 0)
1421 return 0;
1422 return ret;
1423}
1424
1425int nfs_sync_mapping_range(struct address_space *mapping, loff_t range_start, loff_t range_end, int how)
1426{
1427 struct writeback_control wbc = {
1428 .bdi = mapping->backing_dev_info,
1429 .sync_mode = WB_SYNC_ALL,
1430 .nr_to_write = LONG_MAX,
1431 .range_start = range_start,
1432 .range_end = range_end,
1433 };
1434 int ret;
1435
1436 ret = nfs_sync_mapping_wait(mapping, &wbc, how);
1437 if (ret >= 0)
1438 return 0;
1439 return ret;
1440}
1441
1442static int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
1443{
1444 loff_t range_start = page_offset(page);
1445 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001446 struct writeback_control wbc = {
1447 .bdi = page->mapping->backing_dev_info,
1448 .sync_mode = WB_SYNC_ALL,
1449 .nr_to_write = LONG_MAX,
1450 .range_start = range_start,
1451 .range_end = range_end,
1452 };
1453 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001454
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001455 BUG_ON(!PageLocked(page));
1456 if (!(how & FLUSH_NOWRITEPAGE) && clear_page_dirty_for_io(page)) {
1457 ret = nfs_writepage_locked(page, &wbc);
1458 if (ret < 0)
1459 goto out;
1460 }
1461 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1462 if (ret >= 0)
1463 return 0;
1464out:
1465 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001466}
1467
1468/*
1469 * Write back all requests on one page - we do this before reading it.
1470 */
1471int nfs_wb_page(struct inode *inode, struct page* page)
1472{
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001473 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
Trond Myklebust1c759502006-10-09 16:18:38 -04001474}
1475
Trond Myklebust1a545332006-12-05 00:35:40 -05001476int nfs_set_page_dirty(struct page *page)
1477{
1478 struct nfs_page *req;
1479
1480 req = nfs_page_find_request(page);
1481 if (req != NULL) {
1482 /* Mark any existing write requests for flushing */
1483 set_bit(PG_NEED_FLUSH, &req->wb_flags);
1484 nfs_release_request(req);
1485 }
1486 return __set_page_dirty_nobuffers(page);
1487}
1488
Trond Myklebust1c759502006-10-09 16:18:38 -04001489
David Howellsf7b422b2006-06-09 09:34:33 -04001490int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1493 sizeof(struct nfs_write_data),
1494 0, SLAB_HWCACHE_ALIGN,
1495 NULL, NULL);
1496 if (nfs_wdata_cachep == NULL)
1497 return -ENOMEM;
1498
Matthew Dobson93d23412006-03-26 01:37:50 -08001499 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1500 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (nfs_wdata_mempool == NULL)
1502 return -ENOMEM;
1503
Matthew Dobson93d23412006-03-26 01:37:50 -08001504 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1505 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (nfs_commit_mempool == NULL)
1507 return -ENOMEM;
1508
1509 return 0;
1510}
1511
David Brownell266bee82006-06-27 12:59:15 -07001512void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 mempool_destroy(nfs_commit_mempool);
1515 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001516 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517}
1518