blob: 0f779ca12ec3e71392be507f7540cb99f1734fd5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/write.c
3 *
Trond Myklebust7c85d902006-12-13 15:23:48 -05004 * Write file data over NFS.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/types.h>
10#include <linux/slab.h>
11#include <linux/mm.h>
12#include <linux/pagemap.h>
13#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/writeback.h>
Peter Zijlstra89a09142007-03-16 13:38:26 -080015#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include <linux/sunrpc/clnt.h>
18#include <linux/nfs_fs.h>
19#include <linux/nfs_mount.h>
20#include <linux/nfs_page.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070021#include <linux/backing-dev.h>
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "delegation.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050026#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050027#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#define NFSDBG_FACILITY NFSDBG_PAGECACHE
30
31#define MIN_POOL_WRITE (32)
32#define MIN_POOL_COMMIT (4)
33
34/*
35 * Local function declarations
36 */
37static struct nfs_page * nfs_update_request(struct nfs_open_context*,
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct page *,
39 unsigned int, unsigned int);
Trond Myklebustc63c7b02007-04-02 19:29:52 -040040static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
41 struct inode *inode, int ioflags);
Trond Myklebust788e7a82006-03-20 13:44:27 -050042static const struct rpc_call_ops nfs_write_partial_ops;
43static const struct rpc_call_ops nfs_write_full_ops;
44static const struct rpc_call_ops nfs_commit_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Christoph Lametere18b8902006-12-06 20:33:20 -080046static struct kmem_cache *nfs_wdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050047static mempool_t *nfs_wdata_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static mempool_t *nfs_commit_mempool;
49
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070050struct nfs_write_data *nfs_commit_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080052 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
Chuck Lever40859d72005-11-30 18:09:02 -050053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (p) {
55 memset(p, 0, sizeof(*p));
56 INIT_LIST_HEAD(&p->pages);
57 }
58 return p;
59}
60
Trond Myklebust10afec92007-05-14 17:16:04 -040061static void nfs_commit_rcu_free(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Trond Myklebust8aca67f2006-11-13 16:23:44 -050063 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
Chuck Lever40859d72005-11-30 18:09:02 -050064 if (p && (p->pagevec != &p->page_array[0]))
65 kfree(p->pagevec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 mempool_free(p, nfs_commit_mempool);
67}
68
Trond Myklebust8aca67f2006-11-13 16:23:44 -050069void nfs_commit_free(struct nfs_write_data *wdata)
70{
71 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_commit_rcu_free);
72}
73
Trond Myklebust8d5658c2007-04-10 09:26:35 -040074struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050075{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080076 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050077
78 if (p) {
79 memset(p, 0, sizeof(*p));
80 INIT_LIST_HEAD(&p->pages);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070081 p->npages = pagecount;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040082 if (pagecount <= ARRAY_SIZE(p->page_array))
83 p->pagevec = p->page_array;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050084 else {
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040085 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
86 if (!p->pagevec) {
Trond Myklebust3feb2d42006-03-20 13:44:37 -050087 mempool_free(p, nfs_wdata_mempool);
88 p = NULL;
89 }
90 }
91 }
92 return p;
93}
94
Trond Myklebust8aca67f2006-11-13 16:23:44 -050095static void nfs_writedata_rcu_free(struct rcu_head *head)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050096{
Trond Myklebust8aca67f2006-11-13 16:23:44 -050097 struct nfs_write_data *p = container_of(head, struct nfs_write_data, task.u.tk_rcu);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050098 if (p && (p->pagevec != &p->page_array[0]))
99 kfree(p->pagevec);
100 mempool_free(p, nfs_wdata_mempool);
101}
102
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500103static void nfs_writedata_free(struct nfs_write_data *wdata)
104{
105 call_rcu_bh(&wdata->task.u.tk_rcu, nfs_writedata_rcu_free);
106}
107
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100108void nfs_writedata_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 nfs_writedata_free(wdata);
111}
112
Trond Myklebust277459d2006-12-05 00:35:35 -0500113static struct nfs_page *nfs_page_find_request_locked(struct page *page)
114{
115 struct nfs_page *req = NULL;
116
117 if (PagePrivate(page)) {
118 req = (struct nfs_page *)page_private(page);
119 if (req != NULL)
Trond Myklebustc03b4022007-06-17 13:26:38 -0400120 kref_get(&req->wb_kref);
Trond Myklebust277459d2006-12-05 00:35:35 -0500121 }
122 return req;
123}
124
125static struct nfs_page *nfs_page_find_request(struct page *page)
126{
127 struct nfs_page *req = NULL;
128 spinlock_t *req_lock = &NFS_I(page->mapping->host)->req_lock;
129
130 spin_lock(req_lock);
131 req = nfs_page_find_request_locked(page);
132 spin_unlock(req_lock);
133 return req;
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* Adjust the file length if we're writing beyond the end */
137static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
138{
139 struct inode *inode = page->mapping->host;
140 loff_t end, i_size = i_size_read(inode);
Trond Myklebustca52fec2007-04-17 17:22:13 -0400141 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 if (i_size > 0 && page->index < end_index)
144 return;
145 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
146 if (i_size >= end)
147 return;
Chuck Lever91d5b472006-03-20 13:44:14 -0500148 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 i_size_write(inode, end);
150}
151
Trond Myklebusta301b772007-02-06 11:07:15 -0800152/* A writeback failed: mark the page as bad, and invalidate the page cache */
153static void nfs_set_pageerror(struct page *page)
154{
155 SetPageError(page);
156 nfs_zap_mapping(page->mapping->host, page->mapping);
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/* We can set the PG_uptodate flag if we see that a write request
160 * covers the full page.
161 */
162static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
163{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (PageUptodate(page))
165 return;
166 if (base != 0)
167 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500168 if (count != nfs_page_length(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500170 if (count != PAGE_CACHE_SIZE)
Nate Diller60945cb2007-05-10 22:55:08 -0700171 zero_user_page(page, count, PAGE_CACHE_SIZE - count, KM_USER0);
Trond Myklebust49a70f22006-12-05 00:35:38 -0500172 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Trond Myklebuste21195a2006-12-05 00:35:39 -0500175static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 unsigned int offset, unsigned int count)
177{
178 struct nfs_page *req;
Trond Myklebuste21195a2006-12-05 00:35:39 -0500179 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Trond Myklebuste21195a2006-12-05 00:35:39 -0500181 for (;;) {
182 req = nfs_update_request(ctx, page, offset, count);
183 if (!IS_ERR(req))
184 break;
185 ret = PTR_ERR(req);
186 if (ret != -EBUSY)
187 return ret;
188 ret = nfs_wb_page(page->mapping->host, page);
189 if (ret != 0)
190 return ret;
191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /* Update file length */
193 nfs_grow_file(page, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 nfs_unlock_request(req);
Trond Myklebustabd3e642006-01-03 09:55:02 +0100195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static int wb_priority(struct writeback_control *wbc)
199{
200 if (wbc->for_reclaim)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400201 return FLUSH_HIGHPRI | FLUSH_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (wbc->for_kupdate)
203 return FLUSH_LOWPRI;
204 return 0;
205}
206
207/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800208 * NFS congestion control
209 */
210
211int nfs_congestion_kb;
212
213#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
214#define NFS_CONGESTION_OFF_THRESH \
215 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
216
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400217static int nfs_set_page_writeback(struct page *page)
Peter Zijlstra89a09142007-03-16 13:38:26 -0800218{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400219 int ret = test_set_page_writeback(page);
220
221 if (!ret) {
Peter Zijlstra89a09142007-03-16 13:38:26 -0800222 struct inode *inode = page->mapping->host;
223 struct nfs_server *nfss = NFS_SERVER(inode);
224
Peter Zijlstra277866a2007-05-08 00:35:12 -0700225 if (atomic_long_inc_return(&nfss->writeback) >
Peter Zijlstra89a09142007-03-16 13:38:26 -0800226 NFS_CONGESTION_ON_THRESH)
227 set_bdi_congested(&nfss->backing_dev_info, WRITE);
228 }
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400229 return ret;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800230}
231
232static void nfs_end_page_writeback(struct page *page)
233{
234 struct inode *inode = page->mapping->host;
235 struct nfs_server *nfss = NFS_SERVER(inode);
236
237 end_page_writeback(page);
Peter Zijlstra277866a2007-05-08 00:35:12 -0700238 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) {
Peter Zijlstra89a09142007-03-16 13:38:26 -0800239 clear_bdi_congested(&nfss->backing_dev_info, WRITE);
240 congestion_end(WRITE);
241 }
242}
243
244/*
Trond Myklebuste261f512006-12-05 00:35:41 -0500245 * Find an associated nfs write request, and prepare to flush it out
246 * Returns 1 if there was no write request, or if the request was
247 * already tagged by nfs_set_page_dirty.Returns 0 if the request
248 * was not tagged.
249 * May also return an error if the user signalled nfs_wait_on_request().
250 */
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400251static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
252 struct page *page)
Trond Myklebuste261f512006-12-05 00:35:41 -0500253{
254 struct nfs_page *req;
Trond Myklebust612c9382007-04-20 16:12:45 -0400255 struct nfs_inode *nfsi = NFS_I(page->mapping->host);
256 spinlock_t *req_lock = &nfsi->req_lock;
Trond Myklebuste261f512006-12-05 00:35:41 -0500257 int ret;
258
259 spin_lock(req_lock);
260 for(;;) {
261 req = nfs_page_find_request_locked(page);
262 if (req == NULL) {
263 spin_unlock(req_lock);
264 return 1;
265 }
266 if (nfs_lock_request_dontget(req))
267 break;
268 /* Note: If we hold the page lock, as is the case in nfs_writepage,
269 * then the call to nfs_lock_request_dontget() will always
270 * succeed provided that someone hasn't already marked the
271 * request as dirty (in which case we don't care).
272 */
273 spin_unlock(req_lock);
274 ret = nfs_wait_on_request(req);
275 nfs_release_request(req);
276 if (ret != 0)
277 return ret;
278 spin_lock(req_lock);
279 }
Trond Myklebust612c9382007-04-20 16:12:45 -0400280 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
281 /* This request is marked for commit */
282 spin_unlock(req_lock);
283 nfs_unlock_request(req);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400284 nfs_pageio_complete(pgio);
Trond Myklebust612c9382007-04-20 16:12:45 -0400285 return 1;
286 }
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400287 if (nfs_set_page_writeback(page) != 0) {
Trond Myklebust612c9382007-04-20 16:12:45 -0400288 spin_unlock(req_lock);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400289 BUG();
290 }
291 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400292 NFS_PAGE_TAG_LOCKED);
Trond Myklebuste261f512006-12-05 00:35:41 -0500293 ret = test_bit(PG_NEED_FLUSH, &req->wb_flags);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400294 spin_unlock(req_lock);
295 nfs_pageio_add_request(pgio, req);
Trond Myklebuste261f512006-12-05 00:35:41 -0500296 return ret;
297}
298
299/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * Write an mmapped page to the server.
301 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500302static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400304 struct nfs_pageio_descriptor mypgio, *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct nfs_open_context *ctx;
306 struct inode *inode = page->mapping->host;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500307 unsigned offset;
Trond Myklebuste261f512006-12-05 00:35:41 -0500308 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Chuck Lever91d5b472006-03-20 13:44:14 -0500310 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
311 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
312
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400313 if (wbc->for_writepages)
314 pgio = wbc->fs_private;
315 else {
316 nfs_pageio_init_write(&mypgio, inode, wb_priority(wbc));
317 pgio = &mypgio;
318 }
319
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400320 nfs_pageio_cond_complete(pgio, page->index);
321
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400322 err = nfs_page_async_flush(pgio, page);
Trond Myklebuste261f512006-12-05 00:35:41 -0500323 if (err <= 0)
324 goto out;
325 err = 0;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500326 offset = nfs_page_length(page);
327 if (!offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 goto out;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500329
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400330 nfs_pageio_cond_complete(pgio, page->index);
331
Trond Myklebustd5308382005-11-04 15:33:38 -0500332 ctx = nfs_find_open_context(inode, NULL, FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (ctx == NULL) {
334 err = -EBADF;
335 goto out;
336 }
Trond Myklebust200baa22006-12-05 00:35:40 -0500337 err = nfs_writepage_setup(ctx, page, 0, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 put_nfs_open_context(ctx);
Trond Myklebuste261f512006-12-05 00:35:41 -0500339 if (err != 0)
340 goto out;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400341 err = nfs_page_async_flush(pgio, page);
Trond Myklebuste261f512006-12-05 00:35:41 -0500342 if (err > 0)
343 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344out:
Trond Myklebust200baa22006-12-05 00:35:40 -0500345 if (!wbc->for_writepages)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400346 nfs_pageio_complete(pgio);
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500347 return err;
348}
349
350int nfs_writepage(struct page *page, struct writeback_control *wbc)
351{
352 int err;
353
354 err = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return err;
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
360{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct inode *inode = mapping->host;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400362 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int err;
364
Chuck Lever91d5b472006-03-20 13:44:14 -0500365 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
366
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400367 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
368 wbc->fs_private = &pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 err = generic_writepages(mapping, wbc);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400370 nfs_pageio_complete(&pgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (err)
372 return err;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400373 if (pgio.pg_error)
374 return pgio.pg_error;
375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
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);
Trond Myklebust2b82f192007-04-20 16:12:50 -0400398 if (PageDirty(req->wb_page))
399 set_bit(PG_NEED_FLUSH, &req->wb_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 nfsi->npages++;
Trond Myklebustc03b4022007-06-17 13:26:38 -0400401 kref_get(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return 0;
403}
404
405/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800406 * Remove a write request from an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408static void nfs_inode_remove_request(struct nfs_page *req)
409{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400410 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct nfs_inode *nfsi = NFS_I(inode);
412
413 BUG_ON (!NFS_WBACK_BUSY(req));
414
415 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500416 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500417 ClearPagePrivate(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
Trond Myklebust2b82f192007-04-20 16:12:50 -0400419 if (test_and_clear_bit(PG_NEED_FLUSH, &req->wb_flags))
420 __set_page_dirty_nobuffers(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 nfsi->npages--;
422 if (!nfsi->npages) {
423 spin_unlock(&nfsi->req_lock);
Trond Myklebust951a1432005-06-22 17:16:30 +0000424 nfs_end_data_update(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 iput(inode);
426 } else
427 spin_unlock(&nfsi->req_lock);
428 nfs_clear_request(req);
429 nfs_release_request(req);
430}
431
Trond Myklebust61822ab2006-12-05 00:35:42 -0500432static void
433nfs_redirty_request(struct nfs_page *req)
434{
Trond Myklebust61822ab2006-12-05 00:35:42 -0500435 __set_page_dirty_nobuffers(req->wb_page);
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/*
439 * Check if a request is dirty
440 */
441static inline int
442nfs_dirty_request(struct nfs_page *req)
443{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400444 struct page *page = req->wb_page;
445
Trond Myklebust612c9382007-04-20 16:12:45 -0400446 if (page == NULL || test_bit(PG_NEED_COMMIT, &req->wb_flags))
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400447 return 0;
448 return !PageWriteback(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
452/*
453 * Add a request to the inode's commit list.
454 */
455static void
456nfs_mark_request_commit(struct nfs_page *req)
457{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400458 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 struct nfs_inode *nfsi = NFS_I(inode);
460
461 spin_lock(&nfsi->req_lock);
462 nfs_list_add_request(req, &nfsi->commit);
463 nfsi->ncommit++;
Trond Myklebust612c9382007-04-20 16:12:45 -0400464 set_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust5c369682007-06-17 15:27:42 -0400465 radix_tree_tag_set(&nfsi->nfs_page_tree,
466 req->wb_index,
467 NFS_PAGE_TAG_COMMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 spin_unlock(&nfsi->req_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700469 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebusta1803042006-12-05 00:45:19 -0500470 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400472
473static inline
474int nfs_write_need_commit(struct nfs_write_data *data)
475{
476 return data->verf.committed != NFS_FILE_SYNC;
477}
478
479static inline
480int nfs_reschedule_unstable_write(struct nfs_page *req)
481{
Trond Myklebust612c9382007-04-20 16:12:45 -0400482 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400483 nfs_mark_request_commit(req);
484 return 1;
485 }
486 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
487 nfs_redirty_request(req);
488 return 1;
489 }
490 return 0;
491}
492#else
493static inline void
494nfs_mark_request_commit(struct nfs_page *req)
495{
496}
497
498static inline
499int nfs_write_need_commit(struct nfs_write_data *data)
500{
501 return 0;
502}
503
504static inline
505int nfs_reschedule_unstable_write(struct nfs_page *req)
506{
507 return 0;
508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509#endif
510
511/*
512 * Wait for a request to complete.
513 *
514 * Interruptible by signals only if mounted with intr flag.
515 */
Trond Myklebustca52fec2007-04-17 17:22:13 -0400516static int nfs_wait_on_requests_locked(struct inode *inode, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 struct nfs_inode *nfsi = NFS_I(inode);
519 struct nfs_page *req;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400520 pgoff_t idx_end, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned int res = 0;
522 int error;
523
524 if (npages == 0)
525 idx_end = ~0;
526 else
527 idx_end = idx_start + npages - 1;
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 next = idx_start;
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400530 while (radix_tree_gang_lookup_tag(&nfsi->nfs_page_tree, (void **)&req, next, 1, NFS_PAGE_TAG_LOCKED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (req->wb_index > idx_end)
532 break;
533
534 next = req->wb_index + 1;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000535 BUG_ON(!NFS_WBACK_BUSY(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Trond Myklebustc03b4022007-06-17 13:26:38 -0400537 kref_get(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 spin_unlock(&nfsi->req_lock);
539 error = nfs_wait_on_request(req);
540 nfs_release_request(req);
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500541 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (error < 0)
543 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 res++;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return res;
547}
548
Trond Myklebust83715ad2006-07-05 13:17:12 -0400549static void nfs_cancel_commit_list(struct list_head *head)
550{
551 struct nfs_page *req;
552
553 while(!list_empty(head)) {
554 req = nfs_list_entry(head->next);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700555 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400556 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -0400557 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400558 nfs_inode_remove_request(req);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700559 nfs_unlock_request(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400560 }
561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
564/*
565 * nfs_scan_commit - Scan an inode for commit requests
566 * @inode: NFS inode to scan
567 * @dst: destination list
568 * @idx_start: lower bound of page->index to scan.
569 * @npages: idx_start + npages sets the upper bound to scan.
570 *
571 * Moves requests from the inode's 'commit' request list.
572 * The requests are *not* checked to ensure that they form a contiguous set.
573 */
574static int
Trond Myklebustca52fec2007-04-17 17:22:13 -0400575nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000578 int res = 0;
579
580 if (nfsi->ncommit != 0) {
Trond Myklebust5c369682007-06-17 15:27:42 -0400581 res = nfs_scan_list(nfsi, dst, idx_start, npages,
582 NFS_PAGE_TAG_COMMIT);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000583 nfsi->ncommit -= res;
584 if ((nfsi->ncommit == 0) != list_empty(&nfsi->commit))
585 printk(KERN_ERR "NFS: desynchronized value of nfs_i.ncommit.\n");
586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return res;
588}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500589#else
Trond Myklebustca52fec2007-04-17 17:22:13 -0400590static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500591{
592 return 0;
593}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594#endif
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/*
597 * Try to update any existing write request, or create one if there is none.
598 * In order to match, the request's credentials must match those of
599 * the calling process.
600 *
601 * Note: Should always be called with the Page Lock held!
602 */
603static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
Trond Myklebuste21195a2006-12-05 00:35:39 -0500604 struct page *page, unsigned int offset, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Peter Zijlstra89a09142007-03-16 13:38:26 -0800606 struct address_space *mapping = page->mapping;
607 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct nfs_inode *nfsi = NFS_I(inode);
609 struct nfs_page *req, *new = NULL;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400610 pgoff_t rqend, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 end = offset + bytes;
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 for (;;) {
615 /* Loop over all inode entries and see if we find
616 * A request for the page we wish to update
617 */
618 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500619 req = nfs_page_find_request_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (req) {
621 if (!nfs_lock_request_dontget(req)) {
622 int error;
Trond Myklebust277459d2006-12-05 00:35:35 -0500623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 spin_unlock(&nfsi->req_lock);
625 error = nfs_wait_on_request(req);
626 nfs_release_request(req);
Neil Brown1dd594b2006-03-20 13:44:04 -0500627 if (error < 0) {
628 if (new)
629 nfs_release_request(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return ERR_PTR(error);
Neil Brown1dd594b2006-03-20 13:44:04 -0500631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 continue;
633 }
634 spin_unlock(&nfsi->req_lock);
635 if (new)
636 nfs_release_request(new);
637 break;
638 }
639
640 if (new) {
641 int error;
642 nfs_lock_request_dontget(new);
643 error = nfs_inode_add_request(inode, new);
644 if (error) {
645 spin_unlock(&nfsi->req_lock);
646 nfs_unlock_request(new);
647 return ERR_PTR(error);
648 }
649 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return new;
651 }
652 spin_unlock(&nfsi->req_lock);
653
654 new = nfs_create_request(ctx, inode, page, offset, bytes);
655 if (IS_ERR(new))
656 return new;
657 }
658
659 /* We have a request for our page.
660 * If the creds don't match, or the
661 * page addresses don't match,
662 * tell the caller to wait on the conflicting
663 * request.
664 */
665 rqend = req->wb_offset + req->wb_bytes;
666 if (req->wb_context != ctx
667 || req->wb_page != page
668 || !nfs_dirty_request(req)
669 || offset > rqend || end < req->wb_offset) {
670 nfs_unlock_request(req);
671 return ERR_PTR(-EBUSY);
672 }
673
674 /* Okay, the request matches. Update the region */
675 if (offset < req->wb_offset) {
676 req->wb_offset = offset;
677 req->wb_pgbase = offset;
678 req->wb_bytes = rqend - req->wb_offset;
679 }
680
681 if (end > rqend)
682 req->wb_bytes = end - req->wb_offset;
683
684 return req;
685}
686
687int nfs_flush_incompatible(struct file *file, struct page *page)
688{
689 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500691 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /*
693 * Look for a request corresponding to this page. If there
694 * is one, and it belongs to another file, we flush it out
695 * before we try to copy anything into the page. Do this
696 * due to the lack of an ACCESS-type call in NFSv2.
697 * Also do the same if we find a request from an existing
698 * dropped page.
699 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500700 do {
701 req = nfs_page_find_request(page);
702 if (req == NULL)
703 return 0;
704 do_flush = req->wb_page != page || req->wb_context != ctx
Trond Myklebuste261f512006-12-05 00:35:41 -0500705 || !nfs_dirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500707 if (!do_flush)
708 return 0;
709 status = nfs_wb_page(page->mapping->host, page);
710 } while (status == 0);
711 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/*
715 * Update and possibly write a cached page of an NFS file.
716 *
717 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
718 * things with a page scheduled for an RPC call (e.g. invalidate it).
719 */
720int nfs_updatepage(struct file *file, struct page *page,
721 unsigned int offset, unsigned int count)
722{
723 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 int status = 0;
726
Chuck Lever91d5b472006-03-20 13:44:14 -0500727 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800730 file->f_path.dentry->d_parent->d_name.name,
731 file->f_path.dentry->d_name.name, count,
Chuck Lever0bbacc42005-11-01 16:53:32 -0500732 (long long)(page_offset(page) +offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /* If we're not using byte range locks, and we know the page
735 * is entirely in cache, it may be more efficient to avoid
736 * fragmenting write requests.
737 */
Trond Myklebustab0a3db2005-06-22 17:16:30 +0000738 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500739 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Trond Myklebuste21195a2006-12-05 00:35:39 -0500743 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebuste261f512006-12-05 00:35:41 -0500744 __set_page_dirty_nobuffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
747 status, (long long)i_size_read(inode));
748 if (status < 0)
Trond Myklebusta301b772007-02-06 11:07:15 -0800749 nfs_set_pageerror(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return status;
751}
752
753static void nfs_writepage_release(struct nfs_page *req)
754{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Trond Myklebust44dd1512007-05-19 11:58:03 -0400756 if (PageError(req->wb_page)) {
757 nfs_end_page_writeback(req->wb_page);
758 nfs_inode_remove_request(req);
759 } else if (!nfs_reschedule_unstable_write(req)) {
760 /* Set the PG_uptodate flag */
761 nfs_mark_uptodate(req->wb_page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400762 nfs_end_page_writeback(req->wb_page);
763 nfs_inode_remove_request(req);
764 } else
765 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400766 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769static inline int flush_task_priority(int how)
770{
771 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
772 case FLUSH_HIGHPRI:
773 return RPC_PRIORITY_HIGH;
774 case FLUSH_LOWPRI:
775 return RPC_PRIORITY_LOW;
776 }
777 return RPC_PRIORITY_NORMAL;
778}
779
780/*
781 * Set up the argument/result storage required for the RPC call.
782 */
783static void nfs_write_rpcsetup(struct nfs_page *req,
784 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500785 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 unsigned int count, unsigned int offset,
787 int how)
788{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -0500790 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /* Set up the RPC argument and reply structs
793 * NB: take care not to mess about with data->commit et al. */
794
795 data->req = req;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400796 data->inode = inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 data->cred = req->wb_context->cred;
798
799 data->args.fh = NFS_FH(inode);
800 data->args.offset = req_offset(req) + offset;
801 data->args.pgbase = req->wb_pgbase + offset;
802 data->args.pages = data->pagevec;
803 data->args.count = count;
804 data->args.context = req->wb_context;
805
806 data->res.fattr = &data->fattr;
807 data->res.count = count;
808 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400809 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Trond Myklebust788e7a82006-03-20 13:44:27 -0500811 /* Set up the initial task struct. */
812 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
813 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 NFS_PROTO(inode)->write_setup(data, how);
815
816 data->task.tk_priority = flush_task_priority(how);
817 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Chuck Levera3f565b2007-01-31 12:14:01 -0500819 dprintk("NFS: %5u initiated write call "
820 "(req %s/%Ld, %u bytes @ offset %Lu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500821 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 inode->i_sb->s_id,
823 (long long)NFS_FILEID(inode),
824 count,
825 (unsigned long long)data->args.offset);
826}
827
828static void nfs_execute_write(struct nfs_write_data *data)
829{
830 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
831 sigset_t oldset;
832
833 rpc_clnt_sigmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 rpc_execute(&data->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 rpc_clnt_sigunmask(clnt, &oldset);
836}
837
838/*
839 * Generate multiple small requests to write out a single
840 * contiguous dirty area on one page.
841 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400842static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
844 struct nfs_page *req = nfs_list_entry(head->next);
845 struct page *page = req->wb_page;
846 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700847 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
848 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int requests = 0;
850 LIST_HEAD(list);
851
852 nfs_list_remove_request(req);
853
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400854 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700855 do {
856 size_t len = min(nbytes, wsize);
857
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400858 data = nfs_writedata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (!data)
860 goto out_bad;
861 list_add(&data->pages, &list);
862 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700863 nbytes -= len;
864 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 atomic_set(&req->wb_complete, requests);
866
867 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400869 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 do {
871 data = list_entry(list.next, struct nfs_write_data, pages);
872 list_del_init(&data->pages);
873
874 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400876 if (nbytes < wsize)
877 wsize = nbytes;
878 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
879 wsize, offset, how);
880 offset += wsize;
881 nbytes -= wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 nfs_execute_write(data);
883 } while (nbytes != 0);
884
885 return 0;
886
887out_bad:
888 while (!list_empty(&list)) {
889 data = list_entry(list.next, struct nfs_write_data, pages);
890 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500891 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500893 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400894 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400895 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -ENOMEM;
897}
898
899/*
900 * Create an RPC task for the given write request and kick it.
901 * The page must have been locked by the caller.
902 *
903 * It may happen that the page we're passed is not marked dirty.
904 * This is the case if nfs_updatepage detects a conflicting request
905 * that has been written but not committed.
906 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400907static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 struct nfs_page *req;
910 struct page **pages;
911 struct nfs_write_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400913 data = nfs_writedata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!data)
915 goto out_bad;
916
917 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 while (!list_empty(head)) {
919 req = nfs_list_entry(head->next);
920 nfs_list_remove_request(req);
921 nfs_list_add_request(req, &data->pages);
922 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925 req = nfs_list_entry(data->pages.next);
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /* Set up the argument struct */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500928 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 nfs_execute_write(data);
931 return 0;
932 out_bad:
933 while (!list_empty(head)) {
Trond Myklebust10afec92007-05-14 17:16:04 -0400934 req = nfs_list_entry(head->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500936 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400937 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400938 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940 return -ENOMEM;
941}
942
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400943static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
944 struct inode *inode, int ioflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Trond Myklebust7d46a492006-03-20 13:44:50 -0500946 int wsize = NFS_SERVER(inode)->wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400948 if (wsize < PAGE_CACHE_SIZE)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400949 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400950 else
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400951 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954/*
955 * Handle a write reply that flushed part of a page.
956 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500957static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500959 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct nfs_page *req = data->req;
961 struct page *page = req->wb_page;
962
963 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400964 req->wb_context->path.dentry->d_inode->i_sb->s_id,
965 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 req->wb_bytes,
967 (long long)req_offset(req));
968
Trond Myklebust788e7a82006-03-20 13:44:27 -0500969 if (nfs_writeback_done(task, data) != 0)
970 return;
971
972 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -0800973 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500974 req->wb_context->error = task->tk_status;
975 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400976 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400979 if (nfs_write_need_commit(data)) {
980 spinlock_t *req_lock = &NFS_I(page->mapping->host)->req_lock;
981
982 spin_lock(req_lock);
983 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
984 /* Do nothing we need to resend the writes */
985 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
986 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
987 dprintk(" defer commit\n");
988 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
989 set_bit(PG_NEED_RESCHED, &req->wb_flags);
990 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
991 dprintk(" server reboot detected\n");
992 }
993 spin_unlock(req_lock);
994 } else
995 dprintk(" OK\n");
996
997out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (atomic_dec_and_test(&req->wb_complete))
999 nfs_writepage_release(req);
1000}
1001
Trond Myklebust788e7a82006-03-20 13:44:27 -05001002static const struct rpc_call_ops nfs_write_partial_ops = {
1003 .rpc_call_done = nfs_writeback_done_partial,
1004 .rpc_release = nfs_writedata_release,
1005};
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * Handle a write reply that flushes a whole page.
1009 *
1010 * FIXME: There is an inherent race with invalidate_inode_pages and
1011 * writebacks since the page->count is kept > 1 for as long
1012 * as the page has a write request pending.
1013 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001014static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001016 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct nfs_page *req;
1018 struct page *page;
1019
Trond Myklebust788e7a82006-03-20 13:44:27 -05001020 if (nfs_writeback_done(task, data) != 0)
1021 return;
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /* Update attributes as result of writeback. */
1024 while (!list_empty(&data->pages)) {
1025 req = nfs_list_entry(data->pages.next);
1026 nfs_list_remove_request(req);
1027 page = req->wb_page;
1028
1029 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001030 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1031 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 req->wb_bytes,
1033 (long long)req_offset(req));
1034
Trond Myklebust788e7a82006-03-20 13:44:27 -05001035 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001036 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001037 req->wb_context->error = task->tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001038 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001039 goto remove_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001042 if (nfs_write_need_commit(data)) {
1043 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1044 nfs_mark_request_commit(req);
1045 nfs_end_page_writeback(page);
1046 dprintk(" marked for commit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 goto next;
1048 }
Trond Myklebust44dd1512007-05-19 11:58:03 -04001049 /* Set the PG_uptodate flag? */
1050 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001051 dprintk(" OK\n");
1052remove_request:
1053 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 nfs_inode_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001056 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058}
1059
Trond Myklebust788e7a82006-03-20 13:44:27 -05001060static const struct rpc_call_ops nfs_write_full_ops = {
1061 .rpc_call_done = nfs_writeback_done_full,
1062 .rpc_release = nfs_writedata_release,
1063};
1064
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*
1067 * This function is called when the WRITE call is complete.
1068 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001069int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 struct nfs_writeargs *argp = &data->args;
1072 struct nfs_writeres *resp = &data->res;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001073 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Chuck Levera3f565b2007-01-31 12:14:01 -05001075 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 task->tk_pid, task->tk_status);
1077
Chuck Leverf551e442006-09-20 14:33:04 -04001078 /*
1079 * ->write_done will attempt to use post-op attributes to detect
1080 * conflicting writes by other clients. A strict interpretation
1081 * of close-to-open would allow us to continue caching even if
1082 * another writer had changed the file, but some applications
1083 * depend on tighter cache coherency when writing.
1084 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001085 status = NFS_PROTO(data->inode)->write_done(task, data);
1086 if (status != 0)
1087 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001088 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1091 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1092 /* We tried a write call, but the server did not
1093 * commit data to stable storage even though we
1094 * requested it.
1095 * Note: There is a known bug in Tru64 < 5.0 in which
1096 * the server reports NFS_DATA_SYNC, but performs
1097 * NFS_FILE_SYNC. We therefore implement this checking
1098 * as a dprintk() in order to avoid filling syslog.
1099 */
1100 static unsigned long complain;
1101
1102 if (time_before(complain, jiffies)) {
1103 dprintk("NFS: faulty NFS server %s:"
1104 " (committed = %d) != (stable = %d)\n",
David Howells54ceac42006-08-22 20:06:13 -04001105 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 resp->verf->committed, argp->stable);
1107 complain = jiffies + 300 * HZ;
1108 }
1109 }
1110#endif
1111 /* Is this a short write? */
1112 if (task->tk_status >= 0 && resp->count < argp->count) {
1113 static unsigned long complain;
1114
Chuck Lever91d5b472006-03-20 13:44:14 -05001115 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 /* Has the server at least made some progress? */
1118 if (resp->count != 0) {
1119 /* Was this an NFSv2 write or an NFSv3 stable write? */
1120 if (resp->verf->committed != NFS_UNSTABLE) {
1121 /* Resend from where the server left off */
1122 argp->offset += resp->count;
1123 argp->pgbase += resp->count;
1124 argp->count -= resp->count;
1125 } else {
1126 /* Resend as a stable write in order to avoid
1127 * headaches in the case of a server crash.
1128 */
1129 argp->stable = NFS_FILE_SYNC;
1130 }
1131 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001132 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 if (time_before(complain, jiffies)) {
1135 printk(KERN_WARNING
1136 "NFS: Server wrote zero bytes, expected %u.\n",
1137 argp->count);
1138 complain = jiffies + 300 * HZ;
1139 }
1140 /* Can't do anything about it except throw an error. */
1141 task->tk_status = -EIO;
1142 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146
1147#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001148void nfs_commit_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 nfs_commit_free(wdata);
1151}
1152
1153/*
1154 * Set up the argument/result storage required for the RPC call.
1155 */
1156static void nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001157 struct nfs_write_data *data,
1158 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001160 struct nfs_page *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001162 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 /* Set up the RPC argument and reply structs
1165 * NB: take care not to mess about with data->commit et al. */
1166
1167 list_splice_init(head, &data->pages);
1168 first = nfs_list_entry(data->pages.next);
Trond Myklebust88be9f92007-06-05 10:42:27 -04001169 inode = first->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 data->inode = inode;
1172 data->cred = first->wb_context->cred;
1173
1174 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001175 /* Note: we always request a commit of the entire inode */
1176 data->args.offset = 0;
1177 data->args.count = 0;
1178 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 data->res.fattr = &data->fattr;
1180 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001181 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001182
1183 /* Set up the initial task struct. */
1184 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1185 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 NFS_PROTO(inode)->commit_setup(data, how);
1187
1188 data->task.tk_priority = flush_task_priority(how);
1189 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Chuck Levera3f565b2007-01-31 12:14:01 -05001191 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194/*
1195 * Commit dirty pages
1196 */
1197static int
Chuck Lever40859d72005-11-30 18:09:02 -05001198nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 struct nfs_write_data *data;
1201 struct nfs_page *req;
1202
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001203 data = nfs_commit_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (!data)
1206 goto out_bad;
1207
1208 /* Set up the argument struct */
1209 nfs_commit_rpcsetup(head, data, how);
1210
1211 nfs_execute_write(data);
1212 return 0;
1213 out_bad:
1214 while (!list_empty(head)) {
1215 req = nfs_list_entry(head->next);
1216 nfs_list_remove_request(req);
1217 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001218 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001219 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221 return -ENOMEM;
1222}
1223
1224/*
1225 * COMMIT call returned
1226 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001227static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001229 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 struct nfs_page *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Chuck Levera3f565b2007-01-31 12:14:01 -05001232 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 task->tk_pid, task->tk_status);
1234
Trond Myklebust788e7a82006-03-20 13:44:27 -05001235 /* Call the NFS version-specific code */
1236 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1237 return;
1238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 while (!list_empty(&data->pages)) {
1240 req = nfs_list_entry(data->pages.next);
1241 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -04001242 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Christoph Lameterfd39fc82006-06-30 01:55:40 -07001243 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001246 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1247 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 req->wb_bytes,
1249 (long long)req_offset(req));
1250 if (task->tk_status < 0) {
1251 req->wb_context->error = task->tk_status;
1252 nfs_inode_remove_request(req);
1253 dprintk(", error = %d\n", task->tk_status);
1254 goto next;
1255 }
1256
1257 /* Okay, COMMIT succeeded, apparently. Check the verifier
1258 * returned by the server against all stored verfs. */
1259 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1260 /* We have a match */
Trond Myklebust44dd1512007-05-19 11:58:03 -04001261 /* Set the PG_uptodate flag */
1262 nfs_mark_uptodate(req->wb_page, req->wb_pgbase,
1263 req->wb_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 nfs_inode_remove_request(req);
1265 dprintk(" OK\n");
1266 goto next;
1267 }
1268 /* We have a mismatch. Write the page again */
1269 dprintk(" mismatch\n");
Trond Myklebust61822ab2006-12-05 00:35:42 -05001270 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001272 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001275
1276static const struct rpc_call_ops nfs_commit_ops = {
1277 .rpc_call_done = nfs_commit_done,
1278 .rpc_release = nfs_commit_release,
1279};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001281int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 struct nfs_inode *nfsi = NFS_I(inode);
1284 LIST_HEAD(head);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001285 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001288 res = nfs_scan_commit(inode, &head, 0, 0);
1289 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001291 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001292 if (error < 0)
1293 return error;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return res;
1296}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001297#else
1298static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1299{
1300 return 0;
1301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302#endif
1303
Trond Myklebust1c759502006-10-09 16:18:38 -04001304long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Trond Myklebust1c759502006-10-09 16:18:38 -04001306 struct inode *inode = mapping->host;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001307 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustca52fec2007-04-17 17:22:13 -04001308 pgoff_t idx_start, idx_end;
Trond Myklebust1c759502006-10-09 16:18:38 -04001309 unsigned int npages = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001310 LIST_HEAD(head);
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001311 int nocommit = how & FLUSH_NOCOMMIT;
Trond Myklebust3f442542006-09-17 14:46:44 -04001312 long pages, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Trond Myklebust1c759502006-10-09 16:18:38 -04001314 /* FIXME */
1315 if (wbc->range_cyclic)
1316 idx_start = 0;
1317 else {
1318 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1319 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1320 if (idx_end > idx_start) {
Trond Myklebustca52fec2007-04-17 17:22:13 -04001321 pgoff_t l_npages = 1 + idx_end - idx_start;
Trond Myklebust1c759502006-10-09 16:18:38 -04001322 npages = l_npages;
1323 if (sizeof(npages) != sizeof(l_npages) &&
Trond Myklebustca52fec2007-04-17 17:22:13 -04001324 (pgoff_t)npages != l_npages)
Trond Myklebust1c759502006-10-09 16:18:38 -04001325 npages = 0;
1326 }
1327 }
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001328 how &= ~FLUSH_NOCOMMIT;
1329 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 do {
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001331 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1332 if (ret != 0)
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001333 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001334 if (nocommit)
1335 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001336 pages = nfs_scan_commit(inode, &head, idx_start, npages);
Trond Myklebust724c4392007-04-17 17:22:13 -04001337 if (pages == 0)
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001338 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001339 if (how & FLUSH_INVALIDATE) {
1340 spin_unlock(&nfsi->req_lock);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001341 nfs_cancel_commit_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001342 ret = pages;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001343 spin_lock(&nfsi->req_lock);
1344 continue;
1345 }
1346 pages += nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001347 spin_unlock(&nfsi->req_lock);
1348 ret = nfs_commit_list(inode, &head, how);
1349 spin_lock(&nfsi->req_lock);
1350 } while (ret >= 0);
1351 spin_unlock(&nfsi->req_lock);
1352 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Trond Myklebust1c759502006-10-09 16:18:38 -04001355/*
1356 * flush the inode to disk.
1357 */
1358int nfs_wb_all(struct inode *inode)
1359{
1360 struct address_space *mapping = inode->i_mapping;
1361 struct writeback_control wbc = {
1362 .bdi = mapping->backing_dev_info,
1363 .sync_mode = WB_SYNC_ALL,
1364 .nr_to_write = LONG_MAX,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001365 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001366 .range_cyclic = 1,
1367 };
1368 int ret;
1369
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001370 ret = nfs_writepages(mapping, &wbc);
Trond Myklebust61822ab2006-12-05 00:35:42 -05001371 if (ret < 0)
1372 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001373 ret = nfs_sync_mapping_wait(mapping, &wbc, 0);
1374 if (ret >= 0)
1375 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001376out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001377 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001378 return ret;
1379}
1380
1381int nfs_sync_mapping_range(struct address_space *mapping, loff_t range_start, loff_t range_end, int how)
1382{
1383 struct writeback_control wbc = {
1384 .bdi = mapping->backing_dev_info,
1385 .sync_mode = WB_SYNC_ALL,
1386 .nr_to_write = LONG_MAX,
1387 .range_start = range_start,
1388 .range_end = range_end,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001389 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001390 };
1391 int ret;
1392
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001393 ret = nfs_writepages(mapping, &wbc);
1394 if (ret < 0)
1395 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001396 ret = nfs_sync_mapping_wait(mapping, &wbc, how);
1397 if (ret >= 0)
1398 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001399out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001400 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001401 return ret;
1402}
1403
Trond Myklebust61822ab2006-12-05 00:35:42 -05001404int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
Trond Myklebust1c759502006-10-09 16:18:38 -04001405{
1406 loff_t range_start = page_offset(page);
1407 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001408 struct writeback_control wbc = {
1409 .bdi = page->mapping->backing_dev_info,
1410 .sync_mode = WB_SYNC_ALL,
1411 .nr_to_write = LONG_MAX,
1412 .range_start = range_start,
1413 .range_end = range_end,
1414 };
1415 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001416
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001417 BUG_ON(!PageLocked(page));
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001418 if (clear_page_dirty_for_io(page)) {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001419 ret = nfs_writepage_locked(page, &wbc);
1420 if (ret < 0)
1421 goto out;
1422 }
Trond Myklebustf40313a2007-01-13 02:28:08 -05001423 if (!PagePrivate(page))
1424 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001425 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1426 if (ret >= 0)
1427 return 0;
1428out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001429 __mark_inode_dirty(inode, I_DIRTY_PAGES);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001430 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001431}
1432
1433/*
1434 * Write back all requests on one page - we do this before reading it.
1435 */
1436int nfs_wb_page(struct inode *inode, struct page* page)
1437{
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001438 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
Trond Myklebust1c759502006-10-09 16:18:38 -04001439}
1440
Trond Myklebust1a545332006-12-05 00:35:40 -05001441int nfs_set_page_dirty(struct page *page)
1442{
Trond Myklebustd5851582007-04-30 22:17:02 -07001443 struct address_space *mapping = page->mapping;
1444 struct inode *inode;
1445 spinlock_t *req_lock;
Trond Myklebust1a545332006-12-05 00:35:40 -05001446 struct nfs_page *req;
Trond Myklebust2b82f192007-04-20 16:12:50 -04001447 int ret;
Trond Myklebust1a545332006-12-05 00:35:40 -05001448
Trond Myklebustd5851582007-04-30 22:17:02 -07001449 if (!mapping)
1450 goto out_raced;
1451 inode = mapping->host;
1452 if (!inode)
1453 goto out_raced;
1454 req_lock = &NFS_I(inode)->req_lock;
Trond Myklebust2b82f192007-04-20 16:12:50 -04001455 spin_lock(req_lock);
1456 req = nfs_page_find_request_locked(page);
Trond Myklebust1a545332006-12-05 00:35:40 -05001457 if (req != NULL) {
1458 /* Mark any existing write requests for flushing */
Trond Myklebust2b82f192007-04-20 16:12:50 -04001459 ret = !test_and_set_bit(PG_NEED_FLUSH, &req->wb_flags);
1460 spin_unlock(req_lock);
Trond Myklebust1a545332006-12-05 00:35:40 -05001461 nfs_release_request(req);
Trond Myklebust2b82f192007-04-20 16:12:50 -04001462 return ret;
Trond Myklebust1a545332006-12-05 00:35:40 -05001463 }
Trond Myklebust2b82f192007-04-20 16:12:50 -04001464 ret = __set_page_dirty_nobuffers(page);
1465 spin_unlock(req_lock);
1466 return ret;
Trond Myklebustd5851582007-04-30 22:17:02 -07001467out_raced:
1468 return !TestSetPageDirty(page);
Trond Myklebust1a545332006-12-05 00:35:40 -05001469}
1470
Trond Myklebust1c759502006-10-09 16:18:38 -04001471
David Howellsf7b422b2006-06-09 09:34:33 -04001472int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1475 sizeof(struct nfs_write_data),
1476 0, SLAB_HWCACHE_ALIGN,
1477 NULL, NULL);
1478 if (nfs_wdata_cachep == NULL)
1479 return -ENOMEM;
1480
Matthew Dobson93d23412006-03-26 01:37:50 -08001481 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1482 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (nfs_wdata_mempool == NULL)
1484 return -ENOMEM;
1485
Matthew Dobson93d23412006-03-26 01:37:50 -08001486 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1487 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (nfs_commit_mempool == NULL)
1489 return -ENOMEM;
1490
Peter Zijlstra89a09142007-03-16 13:38:26 -08001491 /*
1492 * NFS congestion size, scale with available memory.
1493 *
1494 * 64MB: 8192k
1495 * 128MB: 11585k
1496 * 256MB: 16384k
1497 * 512MB: 23170k
1498 * 1GB: 32768k
1499 * 2GB: 46340k
1500 * 4GB: 65536k
1501 * 8GB: 92681k
1502 * 16GB: 131072k
1503 *
1504 * This allows larger machines to have larger/more transfers.
1505 * Limit the default to 256M
1506 */
1507 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1508 if (nfs_congestion_kb > 256*1024)
1509 nfs_congestion_kb = 256*1024;
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 return 0;
1512}
1513
David Brownell266bee82006-06-27 12:59:15 -07001514void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 mempool_destroy(nfs_commit_mempool);
1517 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001518 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520