blob: 345492e78643846a6a5f356ad4ab3e7c91c6a94d [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);
Trond Myklebuste261f512006-12-05 00:35:41 -050080static void nfs_mark_request_dirty(struct nfs_page *req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int nfs_wait_on_write_congestion(struct address_space *, int);
82static int nfs_wait_on_requests(struct inode *, unsigned long, unsigned int);
Trond Myklebust3f442542006-09-17 14:46:44 -040083static long nfs_flush_mapping(struct address_space *mapping, struct writeback_control *wbc, 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
Christoph Lametere18b8902006-12-06 20:33:20 -080088static struct kmem_cache *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{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080096 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_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;
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800121 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500122
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/*
Trond Myklebuste261f512006-12-05 00:35:41 -0500248 * Find an associated nfs write request, and prepare to flush it out
249 * Returns 1 if there was no write request, or if the request was
250 * already tagged by nfs_set_page_dirty.Returns 0 if the request
251 * was not tagged.
252 * May also return an error if the user signalled nfs_wait_on_request().
253 */
254static int nfs_page_mark_flush(struct page *page)
255{
256 struct nfs_page *req;
257 spinlock_t *req_lock = &NFS_I(page->mapping->host)->req_lock;
258 int ret;
259
260 spin_lock(req_lock);
261 for(;;) {
262 req = nfs_page_find_request_locked(page);
263 if (req == NULL) {
264 spin_unlock(req_lock);
265 return 1;
266 }
267 if (nfs_lock_request_dontget(req))
268 break;
269 /* Note: If we hold the page lock, as is the case in nfs_writepage,
270 * then the call to nfs_lock_request_dontget() will always
271 * succeed provided that someone hasn't already marked the
272 * request as dirty (in which case we don't care).
273 */
274 spin_unlock(req_lock);
275 ret = nfs_wait_on_request(req);
276 nfs_release_request(req);
277 if (ret != 0)
278 return ret;
279 spin_lock(req_lock);
280 }
281 spin_unlock(req_lock);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500282 if (test_and_set_bit(PG_FLUSHING, &req->wb_flags) == 0) {
Trond Myklebuste261f512006-12-05 00:35:41 -0500283 nfs_mark_request_dirty(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500284 set_page_writeback(page);
285 }
Trond Myklebuste261f512006-12-05 00:35:41 -0500286 ret = test_bit(PG_NEED_FLUSH, &req->wb_flags);
287 nfs_unlock_request(req);
288 return ret;
289}
290
291/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 * Write an mmapped page to the server.
293 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500294static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct nfs_open_context *ctx;
297 struct inode *inode = page->mapping->host;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500298 unsigned offset;
Trond Myklebuste261f512006-12-05 00:35:41 -0500299 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Chuck Lever91d5b472006-03-20 13:44:14 -0500301 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
302 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
303
Trond Myklebuste261f512006-12-05 00:35:41 -0500304 err = nfs_page_mark_flush(page);
305 if (err <= 0)
306 goto out;
307 err = 0;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500308 offset = nfs_page_length(page);
309 if (!offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 goto out;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500311
Trond Myklebustd5308382005-11-04 15:33:38 -0500312 ctx = nfs_find_open_context(inode, NULL, FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (ctx == NULL) {
314 err = -EBADF;
315 goto out;
316 }
Trond Myklebust200baa22006-12-05 00:35:40 -0500317 err = nfs_writepage_setup(ctx, page, 0, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 put_nfs_open_context(ctx);
Trond Myklebuste261f512006-12-05 00:35:41 -0500319 if (err != 0)
320 goto out;
321 err = nfs_page_mark_flush(page);
322 if (err > 0)
323 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324out:
Trond Myklebust200baa22006-12-05 00:35:40 -0500325 if (!wbc->for_writepages)
326 nfs_flush_mapping(page->mapping, wbc, wb_priority(wbc));
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500327 return err;
328}
329
330int nfs_writepage(struct page *page, struct writeback_control *wbc)
331{
332 int err;
333
334 err = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return err;
337}
338
339/*
340 * Note: causes nfs_update_request() to block on the assumption
341 * that the writeback is generated due to memory pressure.
342 */
343int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
344{
345 struct backing_dev_info *bdi = mapping->backing_dev_info;
346 struct inode *inode = mapping->host;
347 int err;
348
Chuck Lever91d5b472006-03-20 13:44:14 -0500349 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 err = generic_writepages(mapping, wbc);
352 if (err)
353 return err;
354 while (test_and_set_bit(BDI_write_congested, &bdi->state) != 0) {
355 if (wbc->nonblocking)
356 return 0;
357 nfs_wait_on_write_congestion(mapping, 0);
358 }
Trond Myklebust28c69252006-09-16 13:04:50 -0400359 err = nfs_flush_mapping(mapping, wbc, wb_priority(wbc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (err < 0)
361 goto out;
Chuck Lever91d5b472006-03-20 13:44:14 -0500362 nfs_add_stats(inode, NFSIOS_WRITEPAGES, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (!wbc->nonblocking && wbc->sync_mode == WB_SYNC_ALL) {
364 err = nfs_wait_on_requests(inode, 0, 0);
365 if (err < 0)
366 goto out;
367 }
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000368 err = nfs_commit_inode(inode, wb_priority(wbc));
Trond Myklebust3f442542006-09-17 14:46:44 -0400369 if (err > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371out:
372 clear_bit(BDI_write_congested, &bdi->state);
373 wake_up_all(&nfs_write_congestion);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700374 congestion_end(WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return err;
376}
377
378/*
379 * Insert a write request into an inode
380 */
381static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
382{
383 struct nfs_inode *nfsi = NFS_I(inode);
384 int error;
385
386 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
387 BUG_ON(error == -EEXIST);
388 if (error)
389 return error;
390 if (!nfsi->npages) {
391 igrab(inode);
392 nfs_begin_data_update(inode);
393 if (nfs_have_delegation(inode, FMODE_WRITE))
394 nfsi->change_attr++;
395 }
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500396 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500397 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 nfsi->npages++;
399 atomic_inc(&req->wb_count);
400 return 0;
401}
402
403/*
404 * Insert a write request into an inode
405 */
406static void nfs_inode_remove_request(struct nfs_page *req)
407{
408 struct inode *inode = req->wb_context->dentry->d_inode;
409 struct nfs_inode *nfsi = NFS_I(inode);
410
411 BUG_ON (!NFS_WBACK_BUSY(req));
412
413 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500414 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500415 ClearPagePrivate(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
417 nfsi->npages--;
418 if (!nfsi->npages) {
419 spin_unlock(&nfsi->req_lock);
Trond Myklebust951a1432005-06-22 17:16:30 +0000420 nfs_end_data_update(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 iput(inode);
422 } else
423 spin_unlock(&nfsi->req_lock);
424 nfs_clear_request(req);
425 nfs_release_request(req);
426}
427
428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * Add a request to the inode's dirty list.
430 */
431static void
432nfs_mark_request_dirty(struct nfs_page *req)
433{
434 struct inode *inode = req->wb_context->dentry->d_inode;
435 struct nfs_inode *nfsi = NFS_I(inode);
436
437 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000438 radix_tree_tag_set(&nfsi->nfs_page_tree,
439 req->wb_index, NFS_PAGE_TAG_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 nfs_list_add_request(req, &nfsi->dirty);
441 nfsi->ndirty++;
442 spin_unlock(&nfsi->req_lock);
Trond Myklebusta1803042006-12-05 00:45:19 -0500443 __mark_inode_dirty(inode, I_DIRTY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Trond Myklebust61822ab2006-12-05 00:35:42 -0500446static void
447nfs_redirty_request(struct nfs_page *req)
448{
449 clear_bit(PG_FLUSHING, &req->wb_flags);
450 __set_page_dirty_nobuffers(req->wb_page);
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * Check if a request is dirty
455 */
456static inline int
457nfs_dirty_request(struct nfs_page *req)
458{
Trond Myklebuste261f512006-12-05 00:35:41 -0500459 return test_bit(PG_FLUSHING, &req->wb_flags) == 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
463/*
464 * Add a request to the inode's commit list.
465 */
466static void
467nfs_mark_request_commit(struct nfs_page *req)
468{
469 struct inode *inode = req->wb_context->dentry->d_inode;
470 struct nfs_inode *nfsi = NFS_I(inode);
471
472 spin_lock(&nfsi->req_lock);
473 nfs_list_add_request(req, &nfsi->commit);
474 nfsi->ncommit++;
475 spin_unlock(&nfsi->req_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700476 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebusta1803042006-12-05 00:45:19 -0500477 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479#endif
480
481/*
482 * Wait for a request to complete.
483 *
484 * Interruptible by signals only if mounted with intr flag.
485 */
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500486static int nfs_wait_on_requests_locked(struct inode *inode, unsigned long idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct nfs_inode *nfsi = NFS_I(inode);
489 struct nfs_page *req;
490 unsigned long idx_end, next;
491 unsigned int res = 0;
492 int error;
493
494 if (npages == 0)
495 idx_end = ~0;
496 else
497 idx_end = idx_start + npages - 1;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 next = idx_start;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000500 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 -0700501 if (req->wb_index > idx_end)
502 break;
503
504 next = req->wb_index + 1;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000505 BUG_ON(!NFS_WBACK_BUSY(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 atomic_inc(&req->wb_count);
508 spin_unlock(&nfsi->req_lock);
509 error = nfs_wait_on_request(req);
510 nfs_release_request(req);
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500511 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (error < 0)
513 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 res++;
515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return res;
517}
518
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500519static int nfs_wait_on_requests(struct inode *inode, unsigned long idx_start, unsigned int npages)
520{
521 struct nfs_inode *nfsi = NFS_I(inode);
522 int ret;
523
524 spin_lock(&nfsi->req_lock);
525 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
526 spin_unlock(&nfsi->req_lock);
527 return ret;
528}
529
Trond Myklebust83715ad2006-07-05 13:17:12 -0400530static void nfs_cancel_dirty_list(struct list_head *head)
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400531{
532 struct nfs_page *req;
533 while(!list_empty(head)) {
534 req = nfs_list_entry(head->next);
535 nfs_list_remove_request(req);
536 nfs_inode_remove_request(req);
537 nfs_clear_page_writeback(req);
538 }
539}
540
Trond Myklebust83715ad2006-07-05 13:17:12 -0400541static void nfs_cancel_commit_list(struct list_head *head)
542{
543 struct nfs_page *req;
544
545 while(!list_empty(head)) {
546 req = nfs_list_entry(head->next);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700547 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400548 nfs_list_remove_request(req);
549 nfs_inode_remove_request(req);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700550 nfs_unlock_request(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400551 }
552}
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
555/*
556 * nfs_scan_commit - Scan an inode for commit requests
557 * @inode: NFS inode to scan
558 * @dst: destination list
559 * @idx_start: lower bound of page->index to scan.
560 * @npages: idx_start + npages sets the upper bound to scan.
561 *
562 * Moves requests from the inode's 'commit' request list.
563 * The requests are *not* checked to ensure that they form a contiguous set.
564 */
565static int
566nfs_scan_commit(struct inode *inode, struct list_head *dst, unsigned long idx_start, unsigned int npages)
567{
568 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000569 int res = 0;
570
571 if (nfsi->ncommit != 0) {
Trond Myklebustd2ccddf2006-05-31 01:13:38 -0400572 res = nfs_scan_list(nfsi, &nfsi->commit, dst, idx_start, npages);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000573 nfsi->ncommit -= res;
574 if ((nfsi->ncommit == 0) != list_empty(&nfsi->commit))
575 printk(KERN_ERR "NFS: desynchronized value of nfs_i.ncommit.\n");
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return res;
578}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500579#else
580static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, unsigned long idx_start, unsigned int npages)
581{
582 return 0;
583}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584#endif
585
586static int nfs_wait_on_write_congestion(struct address_space *mapping, int intr)
587{
588 struct backing_dev_info *bdi = mapping->backing_dev_info;
589 DEFINE_WAIT(wait);
590 int ret = 0;
591
592 might_sleep();
593
594 if (!bdi_write_congested(bdi))
595 return 0;
Chuck Lever91d5b472006-03-20 13:44:14 -0500596
597 nfs_inc_stats(mapping->host, NFSIOS_CONGESTIONWAIT);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (intr) {
600 struct rpc_clnt *clnt = NFS_CLIENT(mapping->host);
601 sigset_t oldset;
602
603 rpc_clnt_sigmask(clnt, &oldset);
604 prepare_to_wait(&nfs_write_congestion, &wait, TASK_INTERRUPTIBLE);
605 if (bdi_write_congested(bdi)) {
606 if (signalled())
607 ret = -ERESTARTSYS;
608 else
609 schedule();
610 }
611 rpc_clnt_sigunmask(clnt, &oldset);
612 } else {
613 prepare_to_wait(&nfs_write_congestion, &wait, TASK_UNINTERRUPTIBLE);
614 if (bdi_write_congested(bdi))
615 schedule();
616 }
617 finish_wait(&nfs_write_congestion, &wait);
618 return ret;
619}
620
621
622/*
623 * Try to update any existing write request, or create one if there is none.
624 * In order to match, the request's credentials must match those of
625 * the calling process.
626 *
627 * Note: Should always be called with the Page Lock held!
628 */
629static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
Trond Myklebuste21195a2006-12-05 00:35:39 -0500630 struct page *page, unsigned int offset, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Trond Myklebuste21195a2006-12-05 00:35:39 -0500632 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 struct nfs_inode *nfsi = NFS_I(inode);
634 struct nfs_page *req, *new = NULL;
635 unsigned long rqend, end;
636
637 end = offset + bytes;
638
Trond Myklebuste21195a2006-12-05 00:35:39 -0500639 if (nfs_wait_on_write_congestion(page->mapping, NFS_SERVER(inode)->flags & NFS_MOUNT_INTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return ERR_PTR(-ERESTARTSYS);
641 for (;;) {
642 /* Loop over all inode entries and see if we find
643 * A request for the page we wish to update
644 */
645 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500646 req = nfs_page_find_request_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (req) {
648 if (!nfs_lock_request_dontget(req)) {
649 int error;
Trond Myklebust277459d2006-12-05 00:35:35 -0500650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 spin_unlock(&nfsi->req_lock);
652 error = nfs_wait_on_request(req);
653 nfs_release_request(req);
Neil Brown1dd594b2006-03-20 13:44:04 -0500654 if (error < 0) {
655 if (new)
656 nfs_release_request(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return ERR_PTR(error);
Neil Brown1dd594b2006-03-20 13:44:04 -0500658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 continue;
660 }
661 spin_unlock(&nfsi->req_lock);
662 if (new)
663 nfs_release_request(new);
664 break;
665 }
666
667 if (new) {
668 int error;
669 nfs_lock_request_dontget(new);
670 error = nfs_inode_add_request(inode, new);
671 if (error) {
672 spin_unlock(&nfsi->req_lock);
673 nfs_unlock_request(new);
674 return ERR_PTR(error);
675 }
676 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return new;
678 }
679 spin_unlock(&nfsi->req_lock);
680
681 new = nfs_create_request(ctx, inode, page, offset, bytes);
682 if (IS_ERR(new))
683 return new;
684 }
685
686 /* We have a request for our page.
687 * If the creds don't match, or the
688 * page addresses don't match,
689 * tell the caller to wait on the conflicting
690 * request.
691 */
692 rqend = req->wb_offset + req->wb_bytes;
693 if (req->wb_context != ctx
694 || req->wb_page != page
695 || !nfs_dirty_request(req)
696 || offset > rqend || end < req->wb_offset) {
697 nfs_unlock_request(req);
698 return ERR_PTR(-EBUSY);
699 }
700
701 /* Okay, the request matches. Update the region */
702 if (offset < req->wb_offset) {
703 req->wb_offset = offset;
704 req->wb_pgbase = offset;
705 req->wb_bytes = rqend - req->wb_offset;
706 }
707
708 if (end > rqend)
709 req->wb_bytes = end - req->wb_offset;
710
711 return req;
712}
713
714int nfs_flush_incompatible(struct file *file, struct page *page)
715{
716 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500718 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /*
720 * Look for a request corresponding to this page. If there
721 * is one, and it belongs to another file, we flush it out
722 * before we try to copy anything into the page. Do this
723 * due to the lack of an ACCESS-type call in NFSv2.
724 * Also do the same if we find a request from an existing
725 * dropped page.
726 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500727 do {
728 req = nfs_page_find_request(page);
729 if (req == NULL)
730 return 0;
731 do_flush = req->wb_page != page || req->wb_context != ctx
Trond Myklebuste261f512006-12-05 00:35:41 -0500732 || !nfs_dirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500734 if (!do_flush)
735 return 0;
736 status = nfs_wb_page(page->mapping->host, page);
737 } while (status == 0);
738 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741/*
742 * Update and possibly write a cached page of an NFS file.
743 *
744 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
745 * things with a page scheduled for an RPC call (e.g. invalidate it).
746 */
747int nfs_updatepage(struct file *file, struct page *page,
748 unsigned int offset, unsigned int count)
749{
750 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 int status = 0;
753
Chuck Lever91d5b472006-03-20 13:44:14 -0500754 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800757 file->f_path.dentry->d_parent->d_name.name,
758 file->f_path.dentry->d_name.name, count,
Chuck Lever0bbacc42005-11-01 16:53:32 -0500759 (long long)(page_offset(page) +offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* If we're not using byte range locks, and we know the page
762 * is entirely in cache, it may be more efficient to avoid
763 * fragmenting write requests.
764 */
Trond Myklebustab0a3db2005-06-22 17:16:30 +0000765 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500766 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
Trond Myklebuste21195a2006-12-05 00:35:39 -0500770 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebuste261f512006-12-05 00:35:41 -0500771 __set_page_dirty_nobuffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
774 status, (long long)i_size_read(inode));
775 if (status < 0)
776 ClearPageUptodate(page);
777 return status;
778}
779
780static void nfs_writepage_release(struct nfs_page *req)
781{
782 end_page_writeback(req->wb_page);
783
784#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
785 if (!PageError(req->wb_page)) {
786 if (NFS_NEED_RESCHED(req)) {
Trond Myklebust61822ab2006-12-05 00:35:42 -0500787 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 goto out;
789 } else if (NFS_NEED_COMMIT(req)) {
790 nfs_mark_request_commit(req);
791 goto out;
792 }
793 }
794 nfs_inode_remove_request(req);
795
796out:
797 nfs_clear_commit(req);
798 nfs_clear_reschedule(req);
799#else
800 nfs_inode_remove_request(req);
801#endif
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000802 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805static inline int flush_task_priority(int how)
806{
807 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
808 case FLUSH_HIGHPRI:
809 return RPC_PRIORITY_HIGH;
810 case FLUSH_LOWPRI:
811 return RPC_PRIORITY_LOW;
812 }
813 return RPC_PRIORITY_NORMAL;
814}
815
816/*
817 * Set up the argument/result storage required for the RPC call.
818 */
819static void nfs_write_rpcsetup(struct nfs_page *req,
820 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500821 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 unsigned int count, unsigned int offset,
823 int how)
824{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -0500826 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /* Set up the RPC argument and reply structs
829 * NB: take care not to mess about with data->commit et al. */
830
831 data->req = req;
832 data->inode = inode = req->wb_context->dentry->d_inode;
833 data->cred = req->wb_context->cred;
834
835 data->args.fh = NFS_FH(inode);
836 data->args.offset = req_offset(req) + offset;
837 data->args.pgbase = req->wb_pgbase + offset;
838 data->args.pages = data->pagevec;
839 data->args.count = count;
840 data->args.context = req->wb_context;
841
842 data->res.fattr = &data->fattr;
843 data->res.count = count;
844 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400845 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Trond Myklebust788e7a82006-03-20 13:44:27 -0500847 /* Set up the initial task struct. */
848 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
849 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 NFS_PROTO(inode)->write_setup(data, how);
851
852 data->task.tk_priority = flush_task_priority(how);
853 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 dprintk("NFS: %4d initiated write call (req %s/%Ld, %u bytes @ offset %Lu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500856 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 inode->i_sb->s_id,
858 (long long)NFS_FILEID(inode),
859 count,
860 (unsigned long long)data->args.offset);
861}
862
863static void nfs_execute_write(struct nfs_write_data *data)
864{
865 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
866 sigset_t oldset;
867
868 rpc_clnt_sigmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 rpc_execute(&data->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 rpc_clnt_sigunmask(clnt, &oldset);
871}
872
873/*
874 * Generate multiple small requests to write out a single
875 * contiguous dirty area on one page.
876 */
Trond Myklebust7d46a492006-03-20 13:44:50 -0500877static int nfs_flush_multi(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 struct nfs_page *req = nfs_list_entry(head->next);
880 struct page *page = req->wb_page;
881 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700882 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
883 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 int requests = 0;
885 LIST_HEAD(list);
886
887 nfs_list_remove_request(req);
888
889 nbytes = req->wb_bytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700890 do {
891 size_t len = min(nbytes, wsize);
892
893 data = nfs_writedata_alloc(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (!data)
895 goto out_bad;
896 list_add(&data->pages, &list);
897 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700898 nbytes -= len;
899 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 atomic_set(&req->wb_complete, requests);
901
902 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 offset = 0;
904 nbytes = req->wb_bytes;
905 do {
906 data = list_entry(list.next, struct nfs_write_data, pages);
907 list_del_init(&data->pages);
908
909 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if (nbytes > wsize) {
Trond Myklebust788e7a82006-03-20 13:44:27 -0500912 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
913 wsize, offset, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 offset += wsize;
915 nbytes -= wsize;
916 } else {
Trond Myklebust788e7a82006-03-20 13:44:27 -0500917 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
918 nbytes, offset, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 nbytes = 0;
920 }
921 nfs_execute_write(data);
922 } while (nbytes != 0);
923
924 return 0;
925
926out_bad:
927 while (!list_empty(&list)) {
928 data = list_entry(list.next, struct nfs_write_data, pages);
929 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500930 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500932 nfs_redirty_request(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000933 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return -ENOMEM;
935}
936
937/*
938 * Create an RPC task for the given write request and kick it.
939 * The page must have been locked by the caller.
940 *
941 * It may happen that the page we're passed is not marked dirty.
942 * This is the case if nfs_updatepage detects a conflicting request
943 * that has been written but not committed.
944 */
Trond Myklebust7d46a492006-03-20 13:44:50 -0500945static int nfs_flush_one(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 struct nfs_page *req;
948 struct page **pages;
949 struct nfs_write_data *data;
950 unsigned int count;
951
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700952 data = nfs_writedata_alloc(NFS_SERVER(inode)->wsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (!data)
954 goto out_bad;
955
956 pages = data->pagevec;
957 count = 0;
958 while (!list_empty(head)) {
959 req = nfs_list_entry(head->next);
960 nfs_list_remove_request(req);
961 nfs_list_add_request(req, &data->pages);
962 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 *pages++ = req->wb_page;
964 count += req->wb_bytes;
965 }
966 req = nfs_list_entry(data->pages.next);
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* Set up the argument struct */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500969 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 nfs_execute_write(data);
972 return 0;
973 out_bad:
974 while (!list_empty(head)) {
975 struct nfs_page *req = nfs_list_entry(head->next);
976 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500977 nfs_redirty_request(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000978 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980 return -ENOMEM;
981}
982
Trond Myklebust7d46a492006-03-20 13:44:50 -0500983static int nfs_flush_list(struct inode *inode, struct list_head *head, int npages, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 LIST_HEAD(one_request);
Trond Myklebust7d46a492006-03-20 13:44:50 -0500986 int (*flush_one)(struct inode *, struct list_head *, int);
987 struct nfs_page *req;
988 int wpages = NFS_SERVER(inode)->wpages;
989 int wsize = NFS_SERVER(inode)->wsize;
990 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Trond Myklebust7d46a492006-03-20 13:44:50 -0500992 flush_one = nfs_flush_one;
993 if (wsize < PAGE_CACHE_SIZE)
994 flush_one = nfs_flush_multi;
995 /* For single writes, FLUSH_STABLE is more efficient */
996 if (npages <= wpages && npages == NFS_I(inode)->npages
997 && nfs_list_entry(head->next)->wb_bytes <= wsize)
998 how |= FLUSH_STABLE;
999
1000 do {
1001 nfs_coalesce_requests(head, &one_request, wpages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 req = nfs_list_entry(one_request.next);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001003 error = flush_one(inode, &one_request, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (error < 0)
Trond Myklebust7d46a492006-03-20 13:44:50 -05001005 goto out_err;
1006 } while (!list_empty(head));
1007 return 0;
1008out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 while (!list_empty(head)) {
1010 req = nfs_list_entry(head->next);
1011 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -05001012 nfs_redirty_request(req);
Trond Myklebustc6a556b2005-06-22 17:16:30 +00001013 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 return error;
1016}
1017
1018/*
1019 * Handle a write reply that flushed part of a page.
1020 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001021static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001023 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct nfs_page *req = data->req;
1025 struct page *page = req->wb_page;
1026
1027 dprintk("NFS: write (%s/%Ld %d@%Ld)",
1028 req->wb_context->dentry->d_inode->i_sb->s_id,
1029 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1030 req->wb_bytes,
1031 (long long)req_offset(req));
1032
Trond Myklebust788e7a82006-03-20 13:44:27 -05001033 if (nfs_writeback_done(task, data) != 0)
1034 return;
1035
1036 if (task->tk_status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 ClearPageUptodate(page);
1038 SetPageError(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001039 req->wb_context->error = task->tk_status;
1040 dprintk(", error = %d\n", task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 } else {
1042#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1043 if (data->verf.committed < NFS_FILE_SYNC) {
1044 if (!NFS_NEED_COMMIT(req)) {
1045 nfs_defer_commit(req);
1046 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1047 dprintk(" defer commit\n");
1048 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
1049 nfs_defer_reschedule(req);
1050 dprintk(" server reboot detected\n");
1051 }
1052 } else
1053#endif
1054 dprintk(" OK\n");
1055 }
1056
1057 if (atomic_dec_and_test(&req->wb_complete))
1058 nfs_writepage_release(req);
1059}
1060
Trond Myklebust788e7a82006-03-20 13:44:27 -05001061static const struct rpc_call_ops nfs_write_partial_ops = {
1062 .rpc_call_done = nfs_writeback_done_partial,
1063 .rpc_release = nfs_writedata_release,
1064};
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*
1067 * Handle a write reply that flushes a whole page.
1068 *
1069 * FIXME: There is an inherent race with invalidate_inode_pages and
1070 * writebacks since the page->count is kept > 1 for as long
1071 * as the page has a write request pending.
1072 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001073static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001075 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct nfs_page *req;
1077 struct page *page;
1078
Trond Myklebust788e7a82006-03-20 13:44:27 -05001079 if (nfs_writeback_done(task, data) != 0)
1080 return;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* Update attributes as result of writeback. */
1083 while (!list_empty(&data->pages)) {
1084 req = nfs_list_entry(data->pages.next);
1085 nfs_list_remove_request(req);
1086 page = req->wb_page;
1087
1088 dprintk("NFS: write (%s/%Ld %d@%Ld)",
1089 req->wb_context->dentry->d_inode->i_sb->s_id,
1090 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1091 req->wb_bytes,
1092 (long long)req_offset(req));
1093
Trond Myklebust788e7a82006-03-20 13:44:27 -05001094 if (task->tk_status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ClearPageUptodate(page);
1096 SetPageError(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001097 req->wb_context->error = task->tk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 end_page_writeback(page);
1099 nfs_inode_remove_request(req);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001100 dprintk(", error = %d\n", task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto next;
1102 }
1103 end_page_writeback(page);
1104
1105#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1106 if (data->args.stable != NFS_UNSTABLE || data->verf.committed == NFS_FILE_SYNC) {
1107 nfs_inode_remove_request(req);
1108 dprintk(" OK\n");
1109 goto next;
1110 }
1111 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1112 nfs_mark_request_commit(req);
1113 dprintk(" marked for commit\n");
1114#else
1115 nfs_inode_remove_request(req);
1116#endif
1117 next:
Trond Myklebustc6a556b2005-06-22 17:16:30 +00001118 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
1120}
1121
Trond Myklebust788e7a82006-03-20 13:44:27 -05001122static const struct rpc_call_ops nfs_write_full_ops = {
1123 .rpc_call_done = nfs_writeback_done_full,
1124 .rpc_release = nfs_writedata_release,
1125};
1126
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128/*
1129 * This function is called when the WRITE call is complete.
1130 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001131int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 struct nfs_writeargs *argp = &data->args;
1134 struct nfs_writeres *resp = &data->res;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001135 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 dprintk("NFS: %4d nfs_writeback_done (status %d)\n",
1138 task->tk_pid, task->tk_status);
1139
Chuck Leverf551e442006-09-20 14:33:04 -04001140 /*
1141 * ->write_done will attempt to use post-op attributes to detect
1142 * conflicting writes by other clients. A strict interpretation
1143 * of close-to-open would allow us to continue caching even if
1144 * another writer had changed the file, but some applications
1145 * depend on tighter cache coherency when writing.
1146 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001147 status = NFS_PROTO(data->inode)->write_done(task, data);
1148 if (status != 0)
1149 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001150 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1153 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1154 /* We tried a write call, but the server did not
1155 * commit data to stable storage even though we
1156 * requested it.
1157 * Note: There is a known bug in Tru64 < 5.0 in which
1158 * the server reports NFS_DATA_SYNC, but performs
1159 * NFS_FILE_SYNC. We therefore implement this checking
1160 * as a dprintk() in order to avoid filling syslog.
1161 */
1162 static unsigned long complain;
1163
1164 if (time_before(complain, jiffies)) {
1165 dprintk("NFS: faulty NFS server %s:"
1166 " (committed = %d) != (stable = %d)\n",
David Howells54ceac42006-08-22 20:06:13 -04001167 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 resp->verf->committed, argp->stable);
1169 complain = jiffies + 300 * HZ;
1170 }
1171 }
1172#endif
1173 /* Is this a short write? */
1174 if (task->tk_status >= 0 && resp->count < argp->count) {
1175 static unsigned long complain;
1176
Chuck Lever91d5b472006-03-20 13:44:14 -05001177 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /* Has the server at least made some progress? */
1180 if (resp->count != 0) {
1181 /* Was this an NFSv2 write or an NFSv3 stable write? */
1182 if (resp->verf->committed != NFS_UNSTABLE) {
1183 /* Resend from where the server left off */
1184 argp->offset += resp->count;
1185 argp->pgbase += resp->count;
1186 argp->count -= resp->count;
1187 } else {
1188 /* Resend as a stable write in order to avoid
1189 * headaches in the case of a server crash.
1190 */
1191 argp->stable = NFS_FILE_SYNC;
1192 }
1193 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001194 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196 if (time_before(complain, jiffies)) {
1197 printk(KERN_WARNING
1198 "NFS: Server wrote zero bytes, expected %u.\n",
1199 argp->count);
1200 complain = jiffies + 300 * HZ;
1201 }
1202 /* Can't do anything about it except throw an error. */
1203 task->tk_status = -EIO;
1204 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001205 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208
1209#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001210void nfs_commit_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 nfs_commit_free(wdata);
1213}
1214
1215/*
1216 * Set up the argument/result storage required for the RPC call.
1217 */
1218static void nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001219 struct nfs_write_data *data,
1220 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001222 struct nfs_page *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001224 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 /* Set up the RPC argument and reply structs
1227 * NB: take care not to mess about with data->commit et al. */
1228
1229 list_splice_init(head, &data->pages);
1230 first = nfs_list_entry(data->pages.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 inode = first->wb_context->dentry->d_inode;
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 data->inode = inode;
1234 data->cred = first->wb_context->cred;
1235
1236 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001237 /* Note: we always request a commit of the entire inode */
1238 data->args.offset = 0;
1239 data->args.count = 0;
1240 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 data->res.fattr = &data->fattr;
1242 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001243 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001244
1245 /* Set up the initial task struct. */
1246 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1247 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 NFS_PROTO(inode)->commit_setup(data, how);
1249
1250 data->task.tk_priority = flush_task_priority(how);
1251 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Chuck Lever0bbacc42005-11-01 16:53:32 -05001253 dprintk("NFS: %4d initiated commit call\n", data->task.tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
1256/*
1257 * Commit dirty pages
1258 */
1259static int
Chuck Lever40859d72005-11-30 18:09:02 -05001260nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct nfs_write_data *data;
1263 struct nfs_page *req;
1264
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001265 data = nfs_commit_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 if (!data)
1268 goto out_bad;
1269
1270 /* Set up the argument struct */
1271 nfs_commit_rpcsetup(head, data, how);
1272
1273 nfs_execute_write(data);
1274 return 0;
1275 out_bad:
1276 while (!list_empty(head)) {
1277 req = nfs_list_entry(head->next);
1278 nfs_list_remove_request(req);
1279 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001280 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust5c2d97c2006-09-18 23:20:35 -04001281 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 return -ENOMEM;
1284}
1285
1286/*
1287 * COMMIT call returned
1288 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001289static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001291 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 struct nfs_page *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 dprintk("NFS: %4d nfs_commit_done (status %d)\n",
1295 task->tk_pid, task->tk_status);
1296
Trond Myklebust788e7a82006-03-20 13:44:27 -05001297 /* Call the NFS version-specific code */
1298 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1299 return;
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 while (!list_empty(&data->pages)) {
1302 req = nfs_list_entry(data->pages.next);
1303 nfs_list_remove_request(req);
Christoph Lameterfd39fc82006-06-30 01:55:40 -07001304 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
1307 req->wb_context->dentry->d_inode->i_sb->s_id,
1308 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1309 req->wb_bytes,
1310 (long long)req_offset(req));
1311 if (task->tk_status < 0) {
1312 req->wb_context->error = task->tk_status;
1313 nfs_inode_remove_request(req);
1314 dprintk(", error = %d\n", task->tk_status);
1315 goto next;
1316 }
1317
1318 /* Okay, COMMIT succeeded, apparently. Check the verifier
1319 * returned by the server against all stored verfs. */
1320 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1321 /* We have a match */
1322 nfs_inode_remove_request(req);
1323 dprintk(" OK\n");
1324 goto next;
1325 }
1326 /* We have a mismatch. Write the page again */
1327 dprintk(" mismatch\n");
Trond Myklebust61822ab2006-12-05 00:35:42 -05001328 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 next:
Trond Myklebustc6a556b2005-06-22 17:16:30 +00001330 nfs_clear_page_writeback(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001333
1334static const struct rpc_call_ops nfs_commit_ops = {
1335 .rpc_call_done = nfs_commit_done,
1336 .rpc_release = nfs_commit_release,
1337};
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001338#else
1339static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1340{
1341 return 0;
1342}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343#endif
1344
Trond Myklebust3f442542006-09-17 14:46:44 -04001345static long nfs_flush_mapping(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Trond Myklebust28c69252006-09-16 13:04:50 -04001347 struct nfs_inode *nfsi = NFS_I(mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 LIST_HEAD(head);
Trond Myklebust3f442542006-09-17 14:46:44 -04001349 long res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 spin_lock(&nfsi->req_lock);
Trond Myklebust3f442542006-09-17 14:46:44 -04001352 res = nfs_scan_dirty(mapping, wbc, &head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 spin_unlock(&nfsi->req_lock);
Trond Myklebustab0a3db2005-06-22 17:16:30 +00001354 if (res) {
Trond Myklebust28c69252006-09-16 13:04:50 -04001355 int error = nfs_flush_list(mapping->host, &head, res, how);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001356 if (error < 0)
1357 return error;
Trond Myklebustab0a3db2005-06-22 17:16:30 +00001358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return res;
1360}
1361
1362#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001363int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 struct nfs_inode *nfsi = NFS_I(inode);
1366 LIST_HEAD(head);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001367 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001370 res = nfs_scan_commit(inode, &head, 0, 0);
1371 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001373 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001374 if (error < 0)
1375 return error;
1376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 return res;
1378}
1379#endif
1380
Trond Myklebust1c759502006-10-09 16:18:38 -04001381long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Trond Myklebust1c759502006-10-09 16:18:38 -04001383 struct inode *inode = mapping->host;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001384 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust1c759502006-10-09 16:18:38 -04001385 unsigned long idx_start, idx_end;
1386 unsigned int npages = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001387 LIST_HEAD(head);
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001388 int nocommit = how & FLUSH_NOCOMMIT;
Trond Myklebust3f442542006-09-17 14:46:44 -04001389 long pages, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Trond Myklebust1c759502006-10-09 16:18:38 -04001391 /* FIXME */
1392 if (wbc->range_cyclic)
1393 idx_start = 0;
1394 else {
1395 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1396 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1397 if (idx_end > idx_start) {
1398 unsigned long l_npages = 1 + idx_end - idx_start;
1399 npages = l_npages;
1400 if (sizeof(npages) != sizeof(l_npages) &&
1401 (unsigned long)npages != l_npages)
1402 npages = 0;
1403 }
1404 }
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001405 how &= ~FLUSH_NOCOMMIT;
1406 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 do {
Trond Myklebust1c759502006-10-09 16:18:38 -04001408 wbc->pages_skipped = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001409 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1410 if (ret != 0)
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001411 continue;
Trond Myklebust1c759502006-10-09 16:18:38 -04001412 pages = nfs_scan_dirty(mapping, wbc, &head);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001413 if (pages != 0) {
1414 spin_unlock(&nfsi->req_lock);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001415 if (how & FLUSH_INVALIDATE) {
Trond Myklebust83715ad2006-07-05 13:17:12 -04001416 nfs_cancel_dirty_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001417 ret = pages;
1418 } else
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001419 ret = nfs_flush_list(inode, &head, pages, how);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001420 spin_lock(&nfsi->req_lock);
1421 continue;
1422 }
Trond Myklebust1c759502006-10-09 16:18:38 -04001423 if (wbc->pages_skipped != 0)
1424 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001425 if (nocommit)
1426 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001427 pages = nfs_scan_commit(inode, &head, idx_start, npages);
Trond Myklebust1c759502006-10-09 16:18:38 -04001428 if (pages == 0) {
1429 if (wbc->pages_skipped != 0)
1430 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001431 break;
Trond Myklebust1c759502006-10-09 16:18:38 -04001432 }
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001433 if (how & FLUSH_INVALIDATE) {
1434 spin_unlock(&nfsi->req_lock);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001435 nfs_cancel_commit_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001436 ret = pages;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001437 spin_lock(&nfsi->req_lock);
1438 continue;
1439 }
1440 pages += nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001441 spin_unlock(&nfsi->req_lock);
1442 ret = nfs_commit_list(inode, &head, how);
1443 spin_lock(&nfsi->req_lock);
1444 } while (ret >= 0);
1445 spin_unlock(&nfsi->req_lock);
1446 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Trond Myklebust1c759502006-10-09 16:18:38 -04001449/*
1450 * flush the inode to disk.
1451 */
1452int nfs_wb_all(struct inode *inode)
1453{
1454 struct address_space *mapping = inode->i_mapping;
1455 struct writeback_control wbc = {
1456 .bdi = mapping->backing_dev_info,
1457 .sync_mode = WB_SYNC_ALL,
1458 .nr_to_write = LONG_MAX,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001459 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001460 .range_cyclic = 1,
1461 };
1462 int ret;
1463
Trond Myklebust61822ab2006-12-05 00:35:42 -05001464 ret = generic_writepages(mapping, &wbc);
1465 if (ret < 0)
1466 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001467 ret = nfs_sync_mapping_wait(mapping, &wbc, 0);
1468 if (ret >= 0)
1469 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001470out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001471 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001472 return ret;
1473}
1474
1475int nfs_sync_mapping_range(struct address_space *mapping, loff_t range_start, loff_t range_end, int how)
1476{
1477 struct writeback_control wbc = {
1478 .bdi = mapping->backing_dev_info,
1479 .sync_mode = WB_SYNC_ALL,
1480 .nr_to_write = LONG_MAX,
1481 .range_start = range_start,
1482 .range_end = range_end,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001483 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001484 };
1485 int ret;
1486
Trond Myklebust61822ab2006-12-05 00:35:42 -05001487 if (!(how & FLUSH_NOWRITEPAGE)) {
1488 ret = generic_writepages(mapping, &wbc);
1489 if (ret < 0)
1490 goto out;
1491 }
Trond Myklebust1c759502006-10-09 16:18:38 -04001492 ret = nfs_sync_mapping_wait(mapping, &wbc, how);
1493 if (ret >= 0)
1494 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001495out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001496 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001497 return ret;
1498}
1499
Trond Myklebust61822ab2006-12-05 00:35:42 -05001500int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
Trond Myklebust1c759502006-10-09 16:18:38 -04001501{
1502 loff_t range_start = page_offset(page);
1503 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001504 struct writeback_control wbc = {
1505 .bdi = page->mapping->backing_dev_info,
1506 .sync_mode = WB_SYNC_ALL,
1507 .nr_to_write = LONG_MAX,
1508 .range_start = range_start,
1509 .range_end = range_end,
1510 };
1511 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001512
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001513 BUG_ON(!PageLocked(page));
1514 if (!(how & FLUSH_NOWRITEPAGE) && clear_page_dirty_for_io(page)) {
1515 ret = nfs_writepage_locked(page, &wbc);
1516 if (ret < 0)
1517 goto out;
1518 }
1519 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1520 if (ret >= 0)
1521 return 0;
1522out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001523 __mark_inode_dirty(inode, I_DIRTY_PAGES);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001524 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001525}
1526
1527/*
1528 * Write back all requests on one page - we do this before reading it.
1529 */
1530int nfs_wb_page(struct inode *inode, struct page* page)
1531{
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001532 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
Trond Myklebust1c759502006-10-09 16:18:38 -04001533}
1534
Trond Myklebust1a545332006-12-05 00:35:40 -05001535int nfs_set_page_dirty(struct page *page)
1536{
1537 struct nfs_page *req;
1538
1539 req = nfs_page_find_request(page);
1540 if (req != NULL) {
1541 /* Mark any existing write requests for flushing */
1542 set_bit(PG_NEED_FLUSH, &req->wb_flags);
1543 nfs_release_request(req);
1544 }
1545 return __set_page_dirty_nobuffers(page);
1546}
1547
Trond Myklebust1c759502006-10-09 16:18:38 -04001548
David Howellsf7b422b2006-06-09 09:34:33 -04001549int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1552 sizeof(struct nfs_write_data),
1553 0, SLAB_HWCACHE_ALIGN,
1554 NULL, NULL);
1555 if (nfs_wdata_cachep == NULL)
1556 return -ENOMEM;
1557
Matthew Dobson93d23412006-03-26 01:37:50 -08001558 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1559 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (nfs_wdata_mempool == NULL)
1561 return -ENOMEM;
1562
Matthew Dobson93d23412006-03-26 01:37:50 -08001563 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1564 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 if (nfs_commit_mempool == NULL)
1566 return -ENOMEM;
1567
1568 return 0;
1569}
1570
David Brownell266bee82006-06-27 12:59:15 -07001571void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
1573 mempool_destroy(nfs_commit_mempool);
1574 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001575 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577