blob: 9ef9ec746bfb9715659e33ffd44c25f6c71a79df [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 nfsi->ncommit++;
Trond Myklebust612c9382007-04-20 16:12:45 -0400463 set_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust5c369682007-06-17 15:27:42 -0400464 radix_tree_tag_set(&nfsi->nfs_page_tree,
465 req->wb_index,
466 NFS_PAGE_TAG_COMMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 spin_unlock(&nfsi->req_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700468 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebusta1803042006-12-05 00:45:19 -0500469 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400471
472static inline
473int nfs_write_need_commit(struct nfs_write_data *data)
474{
475 return data->verf.committed != NFS_FILE_SYNC;
476}
477
478static inline
479int nfs_reschedule_unstable_write(struct nfs_page *req)
480{
Trond Myklebust612c9382007-04-20 16:12:45 -0400481 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400482 nfs_mark_request_commit(req);
483 return 1;
484 }
485 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
486 nfs_redirty_request(req);
487 return 1;
488 }
489 return 0;
490}
491#else
492static inline void
493nfs_mark_request_commit(struct nfs_page *req)
494{
495}
496
497static inline
498int nfs_write_need_commit(struct nfs_write_data *data)
499{
500 return 0;
501}
502
503static inline
504int nfs_reschedule_unstable_write(struct nfs_page *req)
505{
506 return 0;
507}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508#endif
509
510/*
511 * Wait for a request to complete.
512 *
513 * Interruptible by signals only if mounted with intr flag.
514 */
Trond Myklebustca52fec2007-04-17 17:22:13 -0400515static int nfs_wait_on_requests_locked(struct inode *inode, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 struct nfs_inode *nfsi = NFS_I(inode);
518 struct nfs_page *req;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400519 pgoff_t idx_end, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 unsigned int res = 0;
521 int error;
522
523 if (npages == 0)
524 idx_end = ~0;
525 else
526 idx_end = idx_start + npages - 1;
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 next = idx_start;
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400529 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 -0700530 if (req->wb_index > idx_end)
531 break;
532
533 next = req->wb_index + 1;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000534 BUG_ON(!NFS_WBACK_BUSY(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Trond Myklebustc03b4022007-06-17 13:26:38 -0400536 kref_get(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 spin_unlock(&nfsi->req_lock);
538 error = nfs_wait_on_request(req);
539 nfs_release_request(req);
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500540 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (error < 0)
542 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 res++;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return res;
546}
547
Trond Myklebust83715ad2006-07-05 13:17:12 -0400548static void nfs_cancel_commit_list(struct list_head *head)
549{
550 struct nfs_page *req;
551
552 while(!list_empty(head)) {
553 req = nfs_list_entry(head->next);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700554 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400555 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -0400556 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400557 nfs_inode_remove_request(req);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700558 nfs_unlock_request(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400559 }
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
563/*
564 * nfs_scan_commit - Scan an inode for commit requests
565 * @inode: NFS inode to scan
566 * @dst: destination list
567 * @idx_start: lower bound of page->index to scan.
568 * @npages: idx_start + npages sets the upper bound to scan.
569 *
570 * Moves requests from the inode's 'commit' request list.
571 * The requests are *not* checked to ensure that they form a contiguous set.
572 */
573static int
Trond Myklebustca52fec2007-04-17 17:22:13 -0400574nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000577 int res = 0;
578
579 if (nfsi->ncommit != 0) {
Trond Myklebust5c369682007-06-17 15:27:42 -0400580 res = nfs_scan_list(nfsi, dst, idx_start, npages,
581 NFS_PAGE_TAG_COMMIT);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000582 nfsi->ncommit -= res;
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return res;
585}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500586#else
Trond Myklebustca52fec2007-04-17 17:22:13 -0400587static 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 -0500588{
589 return 0;
590}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591#endif
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/*
594 * Try to update any existing write request, or create one if there is none.
595 * In order to match, the request's credentials must match those of
596 * the calling process.
597 *
598 * Note: Should always be called with the Page Lock held!
599 */
600static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
Trond Myklebuste21195a2006-12-05 00:35:39 -0500601 struct page *page, unsigned int offset, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Peter Zijlstra89a09142007-03-16 13:38:26 -0800603 struct address_space *mapping = page->mapping;
604 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct nfs_inode *nfsi = NFS_I(inode);
606 struct nfs_page *req, *new = NULL;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400607 pgoff_t rqend, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 end = offset + bytes;
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 for (;;) {
612 /* Loop over all inode entries and see if we find
613 * A request for the page we wish to update
614 */
615 spin_lock(&nfsi->req_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500616 req = nfs_page_find_request_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (req) {
618 if (!nfs_lock_request_dontget(req)) {
619 int error;
Trond Myklebust277459d2006-12-05 00:35:35 -0500620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 spin_unlock(&nfsi->req_lock);
622 error = nfs_wait_on_request(req);
623 nfs_release_request(req);
Neil Brown1dd594b2006-03-20 13:44:04 -0500624 if (error < 0) {
625 if (new)
626 nfs_release_request(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return ERR_PTR(error);
Neil Brown1dd594b2006-03-20 13:44:04 -0500628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 continue;
630 }
631 spin_unlock(&nfsi->req_lock);
632 if (new)
633 nfs_release_request(new);
634 break;
635 }
636
637 if (new) {
638 int error;
639 nfs_lock_request_dontget(new);
640 error = nfs_inode_add_request(inode, new);
641 if (error) {
642 spin_unlock(&nfsi->req_lock);
643 nfs_unlock_request(new);
644 return ERR_PTR(error);
645 }
646 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return new;
648 }
649 spin_unlock(&nfsi->req_lock);
650
651 new = nfs_create_request(ctx, inode, page, offset, bytes);
652 if (IS_ERR(new))
653 return new;
654 }
655
656 /* We have a request for our page.
657 * If the creds don't match, or the
658 * page addresses don't match,
659 * tell the caller to wait on the conflicting
660 * request.
661 */
662 rqend = req->wb_offset + req->wb_bytes;
663 if (req->wb_context != ctx
664 || req->wb_page != page
665 || !nfs_dirty_request(req)
666 || offset > rqend || end < req->wb_offset) {
667 nfs_unlock_request(req);
668 return ERR_PTR(-EBUSY);
669 }
670
671 /* Okay, the request matches. Update the region */
672 if (offset < req->wb_offset) {
673 req->wb_offset = offset;
674 req->wb_pgbase = offset;
675 req->wb_bytes = rqend - req->wb_offset;
676 }
677
678 if (end > rqend)
679 req->wb_bytes = end - req->wb_offset;
680
681 return req;
682}
683
684int nfs_flush_incompatible(struct file *file, struct page *page)
685{
686 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500688 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
690 * Look for a request corresponding to this page. If there
691 * is one, and it belongs to another file, we flush it out
692 * before we try to copy anything into the page. Do this
693 * due to the lack of an ACCESS-type call in NFSv2.
694 * Also do the same if we find a request from an existing
695 * dropped page.
696 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500697 do {
698 req = nfs_page_find_request(page);
699 if (req == NULL)
700 return 0;
701 do_flush = req->wb_page != page || req->wb_context != ctx
Trond Myklebuste261f512006-12-05 00:35:41 -0500702 || !nfs_dirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500704 if (!do_flush)
705 return 0;
706 status = nfs_wb_page(page->mapping->host, page);
707 } while (status == 0);
708 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
711/*
712 * Update and possibly write a cached page of an NFS file.
713 *
714 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
715 * things with a page scheduled for an RPC call (e.g. invalidate it).
716 */
717int nfs_updatepage(struct file *file, struct page *page,
718 unsigned int offset, unsigned int count)
719{
720 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int status = 0;
723
Chuck Lever91d5b472006-03-20 13:44:14 -0500724 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800727 file->f_path.dentry->d_parent->d_name.name,
728 file->f_path.dentry->d_name.name, count,
Chuck Lever0bbacc42005-11-01 16:53:32 -0500729 (long long)(page_offset(page) +offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* If we're not using byte range locks, and we know the page
732 * is entirely in cache, it may be more efficient to avoid
733 * fragmenting write requests.
734 */
Trond Myklebustab0a3db2005-06-22 17:16:30 +0000735 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500736 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739
Trond Myklebuste21195a2006-12-05 00:35:39 -0500740 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebuste261f512006-12-05 00:35:41 -0500741 __set_page_dirty_nobuffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
744 status, (long long)i_size_read(inode));
745 if (status < 0)
Trond Myklebusta301b772007-02-06 11:07:15 -0800746 nfs_set_pageerror(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return status;
748}
749
750static void nfs_writepage_release(struct nfs_page *req)
751{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Trond Myklebust44dd1512007-05-19 11:58:03 -0400753 if (PageError(req->wb_page)) {
754 nfs_end_page_writeback(req->wb_page);
755 nfs_inode_remove_request(req);
756 } else if (!nfs_reschedule_unstable_write(req)) {
757 /* Set the PG_uptodate flag */
758 nfs_mark_uptodate(req->wb_page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400759 nfs_end_page_writeback(req->wb_page);
760 nfs_inode_remove_request(req);
761 } else
762 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400763 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766static inline int flush_task_priority(int how)
767{
768 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
769 case FLUSH_HIGHPRI:
770 return RPC_PRIORITY_HIGH;
771 case FLUSH_LOWPRI:
772 return RPC_PRIORITY_LOW;
773 }
774 return RPC_PRIORITY_NORMAL;
775}
776
777/*
778 * Set up the argument/result storage required for the RPC call.
779 */
780static void nfs_write_rpcsetup(struct nfs_page *req,
781 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500782 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 unsigned int count, unsigned int offset,
784 int how)
785{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -0500787 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 /* Set up the RPC argument and reply structs
790 * NB: take care not to mess about with data->commit et al. */
791
792 data->req = req;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400793 data->inode = inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 data->cred = req->wb_context->cred;
795
796 data->args.fh = NFS_FH(inode);
797 data->args.offset = req_offset(req) + offset;
798 data->args.pgbase = req->wb_pgbase + offset;
799 data->args.pages = data->pagevec;
800 data->args.count = count;
801 data->args.context = req->wb_context;
802
803 data->res.fattr = &data->fattr;
804 data->res.count = count;
805 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400806 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Trond Myklebust788e7a82006-03-20 13:44:27 -0500808 /* Set up the initial task struct. */
809 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
810 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 NFS_PROTO(inode)->write_setup(data, how);
812
813 data->task.tk_priority = flush_task_priority(how);
814 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Chuck Levera3f565b2007-01-31 12:14:01 -0500816 dprintk("NFS: %5u initiated write call "
817 "(req %s/%Ld, %u bytes @ offset %Lu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500818 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 inode->i_sb->s_id,
820 (long long)NFS_FILEID(inode),
821 count,
822 (unsigned long long)data->args.offset);
823}
824
825static void nfs_execute_write(struct nfs_write_data *data)
826{
827 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
828 sigset_t oldset;
829
830 rpc_clnt_sigmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 rpc_execute(&data->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 rpc_clnt_sigunmask(clnt, &oldset);
833}
834
835/*
836 * Generate multiple small requests to write out a single
837 * contiguous dirty area on one page.
838 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400839static 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 -0700840{
841 struct nfs_page *req = nfs_list_entry(head->next);
842 struct page *page = req->wb_page;
843 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700844 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
845 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 int requests = 0;
847 LIST_HEAD(list);
848
849 nfs_list_remove_request(req);
850
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400851 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700852 do {
853 size_t len = min(nbytes, wsize);
854
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400855 data = nfs_writedata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!data)
857 goto out_bad;
858 list_add(&data->pages, &list);
859 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700860 nbytes -= len;
861 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 atomic_set(&req->wb_complete, requests);
863
864 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400866 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 do {
868 data = list_entry(list.next, struct nfs_write_data, pages);
869 list_del_init(&data->pages);
870
871 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400873 if (nbytes < wsize)
874 wsize = nbytes;
875 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
876 wsize, offset, how);
877 offset += wsize;
878 nbytes -= wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 nfs_execute_write(data);
880 } while (nbytes != 0);
881
882 return 0;
883
884out_bad:
885 while (!list_empty(&list)) {
886 data = list_entry(list.next, struct nfs_write_data, pages);
887 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500888 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500890 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400891 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400892 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return -ENOMEM;
894}
895
896/*
897 * Create an RPC task for the given write request and kick it.
898 * The page must have been locked by the caller.
899 *
900 * It may happen that the page we're passed is not marked dirty.
901 * This is the case if nfs_updatepage detects a conflicting request
902 * that has been written but not committed.
903 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400904static 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 -0700905{
906 struct nfs_page *req;
907 struct page **pages;
908 struct nfs_write_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400910 data = nfs_writedata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!data)
912 goto out_bad;
913
914 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 while (!list_empty(head)) {
916 req = nfs_list_entry(head->next);
917 nfs_list_remove_request(req);
918 nfs_list_add_request(req, &data->pages);
919 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922 req = nfs_list_entry(data->pages.next);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* Set up the argument struct */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500925 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 nfs_execute_write(data);
928 return 0;
929 out_bad:
930 while (!list_empty(head)) {
Trond Myklebust10afec92007-05-14 17:16:04 -0400931 req = nfs_list_entry(head->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500933 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400934 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400935 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937 return -ENOMEM;
938}
939
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400940static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
941 struct inode *inode, int ioflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Trond Myklebust7d46a492006-03-20 13:44:50 -0500943 int wsize = NFS_SERVER(inode)->wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400945 if (wsize < PAGE_CACHE_SIZE)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400946 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400947 else
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400948 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
951/*
952 * Handle a write reply that flushed part of a page.
953 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500954static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500956 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct nfs_page *req = data->req;
958 struct page *page = req->wb_page;
959
960 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400961 req->wb_context->path.dentry->d_inode->i_sb->s_id,
962 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 req->wb_bytes,
964 (long long)req_offset(req));
965
Trond Myklebust788e7a82006-03-20 13:44:27 -0500966 if (nfs_writeback_done(task, data) != 0)
967 return;
968
969 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -0800970 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500971 req->wb_context->error = task->tk_status;
972 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400973 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400976 if (nfs_write_need_commit(data)) {
977 spinlock_t *req_lock = &NFS_I(page->mapping->host)->req_lock;
978
979 spin_lock(req_lock);
980 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
981 /* Do nothing we need to resend the writes */
982 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
983 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
984 dprintk(" defer commit\n");
985 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
986 set_bit(PG_NEED_RESCHED, &req->wb_flags);
987 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
988 dprintk(" server reboot detected\n");
989 }
990 spin_unlock(req_lock);
991 } else
992 dprintk(" OK\n");
993
994out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (atomic_dec_and_test(&req->wb_complete))
996 nfs_writepage_release(req);
997}
998
Trond Myklebust788e7a82006-03-20 13:44:27 -0500999static const struct rpc_call_ops nfs_write_partial_ops = {
1000 .rpc_call_done = nfs_writeback_done_partial,
1001 .rpc_release = nfs_writedata_release,
1002};
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/*
1005 * Handle a write reply that flushes a whole page.
1006 *
1007 * FIXME: There is an inherent race with invalidate_inode_pages and
1008 * writebacks since the page->count is kept > 1 for as long
1009 * as the page has a write request pending.
1010 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001011static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001013 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct nfs_page *req;
1015 struct page *page;
1016
Trond Myklebust788e7a82006-03-20 13:44:27 -05001017 if (nfs_writeback_done(task, data) != 0)
1018 return;
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /* Update attributes as result of writeback. */
1021 while (!list_empty(&data->pages)) {
1022 req = nfs_list_entry(data->pages.next);
1023 nfs_list_remove_request(req);
1024 page = req->wb_page;
1025
1026 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001027 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1028 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 req->wb_bytes,
1030 (long long)req_offset(req));
1031
Trond Myklebust788e7a82006-03-20 13:44:27 -05001032 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001033 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001034 req->wb_context->error = task->tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001035 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001036 goto remove_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001039 if (nfs_write_need_commit(data)) {
1040 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1041 nfs_mark_request_commit(req);
1042 nfs_end_page_writeback(page);
1043 dprintk(" marked for commit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 goto next;
1045 }
Trond Myklebust44dd1512007-05-19 11:58:03 -04001046 /* Set the PG_uptodate flag? */
1047 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001048 dprintk(" OK\n");
1049remove_request:
1050 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 nfs_inode_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001053 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055}
1056
Trond Myklebust788e7a82006-03-20 13:44:27 -05001057static const struct rpc_call_ops nfs_write_full_ops = {
1058 .rpc_call_done = nfs_writeback_done_full,
1059 .rpc_release = nfs_writedata_release,
1060};
1061
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/*
1064 * This function is called when the WRITE call is complete.
1065 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001066int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct nfs_writeargs *argp = &data->args;
1069 struct nfs_writeres *resp = &data->res;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001070 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Chuck Levera3f565b2007-01-31 12:14:01 -05001072 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 task->tk_pid, task->tk_status);
1074
Chuck Leverf551e442006-09-20 14:33:04 -04001075 /*
1076 * ->write_done will attempt to use post-op attributes to detect
1077 * conflicting writes by other clients. A strict interpretation
1078 * of close-to-open would allow us to continue caching even if
1079 * another writer had changed the file, but some applications
1080 * depend on tighter cache coherency when writing.
1081 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001082 status = NFS_PROTO(data->inode)->write_done(task, data);
1083 if (status != 0)
1084 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001085 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1088 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1089 /* We tried a write call, but the server did not
1090 * commit data to stable storage even though we
1091 * requested it.
1092 * Note: There is a known bug in Tru64 < 5.0 in which
1093 * the server reports NFS_DATA_SYNC, but performs
1094 * NFS_FILE_SYNC. We therefore implement this checking
1095 * as a dprintk() in order to avoid filling syslog.
1096 */
1097 static unsigned long complain;
1098
1099 if (time_before(complain, jiffies)) {
1100 dprintk("NFS: faulty NFS server %s:"
1101 " (committed = %d) != (stable = %d)\n",
David Howells54ceac42006-08-22 20:06:13 -04001102 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 resp->verf->committed, argp->stable);
1104 complain = jiffies + 300 * HZ;
1105 }
1106 }
1107#endif
1108 /* Is this a short write? */
1109 if (task->tk_status >= 0 && resp->count < argp->count) {
1110 static unsigned long complain;
1111
Chuck Lever91d5b472006-03-20 13:44:14 -05001112 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* Has the server at least made some progress? */
1115 if (resp->count != 0) {
1116 /* Was this an NFSv2 write or an NFSv3 stable write? */
1117 if (resp->verf->committed != NFS_UNSTABLE) {
1118 /* Resend from where the server left off */
1119 argp->offset += resp->count;
1120 argp->pgbase += resp->count;
1121 argp->count -= resp->count;
1122 } else {
1123 /* Resend as a stable write in order to avoid
1124 * headaches in the case of a server crash.
1125 */
1126 argp->stable = NFS_FILE_SYNC;
1127 }
1128 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001129 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131 if (time_before(complain, jiffies)) {
1132 printk(KERN_WARNING
1133 "NFS: Server wrote zero bytes, expected %u.\n",
1134 argp->count);
1135 complain = jiffies + 300 * HZ;
1136 }
1137 /* Can't do anything about it except throw an error. */
1138 task->tk_status = -EIO;
1139 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143
1144#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001145void nfs_commit_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 nfs_commit_free(wdata);
1148}
1149
1150/*
1151 * Set up the argument/result storage required for the RPC call.
1152 */
1153static void nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001154 struct nfs_write_data *data,
1155 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001157 struct nfs_page *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001159 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /* Set up the RPC argument and reply structs
1162 * NB: take care not to mess about with data->commit et al. */
1163
1164 list_splice_init(head, &data->pages);
1165 first = nfs_list_entry(data->pages.next);
Trond Myklebust88be9f92007-06-05 10:42:27 -04001166 inode = first->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 data->inode = inode;
1169 data->cred = first->wb_context->cred;
1170
1171 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001172 /* Note: we always request a commit of the entire inode */
1173 data->args.offset = 0;
1174 data->args.count = 0;
1175 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 data->res.fattr = &data->fattr;
1177 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001178 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001179
1180 /* Set up the initial task struct. */
1181 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1182 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 NFS_PROTO(inode)->commit_setup(data, how);
1184
1185 data->task.tk_priority = flush_task_priority(how);
1186 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Chuck Levera3f565b2007-01-31 12:14:01 -05001188 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191/*
1192 * Commit dirty pages
1193 */
1194static int
Chuck Lever40859d72005-11-30 18:09:02 -05001195nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 struct nfs_write_data *data;
1198 struct nfs_page *req;
1199
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001200 data = nfs_commit_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 if (!data)
1203 goto out_bad;
1204
1205 /* Set up the argument struct */
1206 nfs_commit_rpcsetup(head, data, how);
1207
1208 nfs_execute_write(data);
1209 return 0;
1210 out_bad:
1211 while (!list_empty(head)) {
1212 req = nfs_list_entry(head->next);
1213 nfs_list_remove_request(req);
1214 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001215 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001216 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
1218 return -ENOMEM;
1219}
1220
1221/*
1222 * COMMIT call returned
1223 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001224static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001226 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 struct nfs_page *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Chuck Levera3f565b2007-01-31 12:14:01 -05001229 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 task->tk_pid, task->tk_status);
1231
Trond Myklebust788e7a82006-03-20 13:44:27 -05001232 /* Call the NFS version-specific code */
1233 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1234 return;
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 while (!list_empty(&data->pages)) {
1237 req = nfs_list_entry(data->pages.next);
1238 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -04001239 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Christoph Lameterfd39fc82006-06-30 01:55:40 -07001240 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001243 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1244 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 req->wb_bytes,
1246 (long long)req_offset(req));
1247 if (task->tk_status < 0) {
1248 req->wb_context->error = task->tk_status;
1249 nfs_inode_remove_request(req);
1250 dprintk(", error = %d\n", task->tk_status);
1251 goto next;
1252 }
1253
1254 /* Okay, COMMIT succeeded, apparently. Check the verifier
1255 * returned by the server against all stored verfs. */
1256 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1257 /* We have a match */
Trond Myklebust44dd1512007-05-19 11:58:03 -04001258 /* Set the PG_uptodate flag */
1259 nfs_mark_uptodate(req->wb_page, req->wb_pgbase,
1260 req->wb_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 nfs_inode_remove_request(req);
1262 dprintk(" OK\n");
1263 goto next;
1264 }
1265 /* We have a mismatch. Write the page again */
1266 dprintk(" mismatch\n");
Trond Myklebust61822ab2006-12-05 00:35:42 -05001267 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001269 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001272
1273static const struct rpc_call_ops nfs_commit_ops = {
1274 .rpc_call_done = nfs_commit_done,
1275 .rpc_release = nfs_commit_release,
1276};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001278int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 struct nfs_inode *nfsi = NFS_I(inode);
1281 LIST_HEAD(head);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001282 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 spin_lock(&nfsi->req_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001285 res = nfs_scan_commit(inode, &head, 0, 0);
1286 spin_unlock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001288 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001289 if (error < 0)
1290 return error;
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return res;
1293}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001294#else
1295static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1296{
1297 return 0;
1298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299#endif
1300
Trond Myklebust1c759502006-10-09 16:18:38 -04001301long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Trond Myklebust1c759502006-10-09 16:18:38 -04001303 struct inode *inode = mapping->host;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001304 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustca52fec2007-04-17 17:22:13 -04001305 pgoff_t idx_start, idx_end;
Trond Myklebust1c759502006-10-09 16:18:38 -04001306 unsigned int npages = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001307 LIST_HEAD(head);
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001308 int nocommit = how & FLUSH_NOCOMMIT;
Trond Myklebust3f442542006-09-17 14:46:44 -04001309 long pages, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Trond Myklebust1c759502006-10-09 16:18:38 -04001311 /* FIXME */
1312 if (wbc->range_cyclic)
1313 idx_start = 0;
1314 else {
1315 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1316 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1317 if (idx_end > idx_start) {
Trond Myklebustca52fec2007-04-17 17:22:13 -04001318 pgoff_t l_npages = 1 + idx_end - idx_start;
Trond Myklebust1c759502006-10-09 16:18:38 -04001319 npages = l_npages;
1320 if (sizeof(npages) != sizeof(l_npages) &&
Trond Myklebustca52fec2007-04-17 17:22:13 -04001321 (pgoff_t)npages != l_npages)
Trond Myklebust1c759502006-10-09 16:18:38 -04001322 npages = 0;
1323 }
1324 }
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001325 how &= ~FLUSH_NOCOMMIT;
1326 spin_lock(&nfsi->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 do {
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001328 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1329 if (ret != 0)
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001330 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001331 if (nocommit)
1332 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001333 pages = nfs_scan_commit(inode, &head, idx_start, npages);
Trond Myklebust724c4392007-04-17 17:22:13 -04001334 if (pages == 0)
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001335 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001336 if (how & FLUSH_INVALIDATE) {
1337 spin_unlock(&nfsi->req_lock);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001338 nfs_cancel_commit_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001339 ret = pages;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001340 spin_lock(&nfsi->req_lock);
1341 continue;
1342 }
1343 pages += nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001344 spin_unlock(&nfsi->req_lock);
1345 ret = nfs_commit_list(inode, &head, how);
1346 spin_lock(&nfsi->req_lock);
1347 } while (ret >= 0);
1348 spin_unlock(&nfsi->req_lock);
1349 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
Trond Myklebust1c759502006-10-09 16:18:38 -04001352/*
1353 * flush the inode to disk.
1354 */
1355int nfs_wb_all(struct inode *inode)
1356{
1357 struct address_space *mapping = inode->i_mapping;
1358 struct writeback_control wbc = {
1359 .bdi = mapping->backing_dev_info,
1360 .sync_mode = WB_SYNC_ALL,
1361 .nr_to_write = LONG_MAX,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001362 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001363 .range_cyclic = 1,
1364 };
1365 int ret;
1366
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001367 ret = nfs_writepages(mapping, &wbc);
Trond Myklebust61822ab2006-12-05 00:35:42 -05001368 if (ret < 0)
1369 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001370 ret = nfs_sync_mapping_wait(mapping, &wbc, 0);
1371 if (ret >= 0)
1372 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001373out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001374 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001375 return ret;
1376}
1377
1378int nfs_sync_mapping_range(struct address_space *mapping, loff_t range_start, loff_t range_end, int how)
1379{
1380 struct writeback_control wbc = {
1381 .bdi = mapping->backing_dev_info,
1382 .sync_mode = WB_SYNC_ALL,
1383 .nr_to_write = LONG_MAX,
1384 .range_start = range_start,
1385 .range_end = range_end,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001386 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001387 };
1388 int ret;
1389
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001390 ret = nfs_writepages(mapping, &wbc);
1391 if (ret < 0)
1392 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001393 ret = nfs_sync_mapping_wait(mapping, &wbc, how);
1394 if (ret >= 0)
1395 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001396out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001397 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001398 return ret;
1399}
1400
Trond Myklebust61822ab2006-12-05 00:35:42 -05001401int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
Trond Myklebust1c759502006-10-09 16:18:38 -04001402{
1403 loff_t range_start = page_offset(page);
1404 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001405 struct writeback_control wbc = {
1406 .bdi = page->mapping->backing_dev_info,
1407 .sync_mode = WB_SYNC_ALL,
1408 .nr_to_write = LONG_MAX,
1409 .range_start = range_start,
1410 .range_end = range_end,
1411 };
1412 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001413
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001414 BUG_ON(!PageLocked(page));
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001415 if (clear_page_dirty_for_io(page)) {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001416 ret = nfs_writepage_locked(page, &wbc);
1417 if (ret < 0)
1418 goto out;
1419 }
Trond Myklebustf40313a2007-01-13 02:28:08 -05001420 if (!PagePrivate(page))
1421 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001422 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1423 if (ret >= 0)
1424 return 0;
1425out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001426 __mark_inode_dirty(inode, I_DIRTY_PAGES);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001427 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001428}
1429
1430/*
1431 * Write back all requests on one page - we do this before reading it.
1432 */
1433int nfs_wb_page(struct inode *inode, struct page* page)
1434{
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001435 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
Trond Myklebust1c759502006-10-09 16:18:38 -04001436}
1437
Trond Myklebust1a545332006-12-05 00:35:40 -05001438int nfs_set_page_dirty(struct page *page)
1439{
Trond Myklebustd5851582007-04-30 22:17:02 -07001440 struct address_space *mapping = page->mapping;
1441 struct inode *inode;
1442 spinlock_t *req_lock;
Trond Myklebust1a545332006-12-05 00:35:40 -05001443 struct nfs_page *req;
Trond Myklebust2b82f192007-04-20 16:12:50 -04001444 int ret;
Trond Myklebust1a545332006-12-05 00:35:40 -05001445
Trond Myklebustd5851582007-04-30 22:17:02 -07001446 if (!mapping)
1447 goto out_raced;
1448 inode = mapping->host;
1449 if (!inode)
1450 goto out_raced;
1451 req_lock = &NFS_I(inode)->req_lock;
Trond Myklebust2b82f192007-04-20 16:12:50 -04001452 spin_lock(req_lock);
1453 req = nfs_page_find_request_locked(page);
Trond Myklebust1a545332006-12-05 00:35:40 -05001454 if (req != NULL) {
1455 /* Mark any existing write requests for flushing */
Trond Myklebust2b82f192007-04-20 16:12:50 -04001456 ret = !test_and_set_bit(PG_NEED_FLUSH, &req->wb_flags);
1457 spin_unlock(req_lock);
Trond Myklebust1a545332006-12-05 00:35:40 -05001458 nfs_release_request(req);
Trond Myklebust2b82f192007-04-20 16:12:50 -04001459 return ret;
Trond Myklebust1a545332006-12-05 00:35:40 -05001460 }
Trond Myklebust2b82f192007-04-20 16:12:50 -04001461 ret = __set_page_dirty_nobuffers(page);
1462 spin_unlock(req_lock);
1463 return ret;
Trond Myklebustd5851582007-04-30 22:17:02 -07001464out_raced:
1465 return !TestSetPageDirty(page);
Trond Myklebust1a545332006-12-05 00:35:40 -05001466}
1467
Trond Myklebust1c759502006-10-09 16:18:38 -04001468
David Howellsf7b422b2006-06-09 09:34:33 -04001469int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1472 sizeof(struct nfs_write_data),
1473 0, SLAB_HWCACHE_ALIGN,
1474 NULL, NULL);
1475 if (nfs_wdata_cachep == NULL)
1476 return -ENOMEM;
1477
Matthew Dobson93d23412006-03-26 01:37:50 -08001478 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1479 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (nfs_wdata_mempool == NULL)
1481 return -ENOMEM;
1482
Matthew Dobson93d23412006-03-26 01:37:50 -08001483 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1484 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (nfs_commit_mempool == NULL)
1486 return -ENOMEM;
1487
Peter Zijlstra89a09142007-03-16 13:38:26 -08001488 /*
1489 * NFS congestion size, scale with available memory.
1490 *
1491 * 64MB: 8192k
1492 * 128MB: 11585k
1493 * 256MB: 16384k
1494 * 512MB: 23170k
1495 * 1GB: 32768k
1496 * 2GB: 46340k
1497 * 4GB: 65536k
1498 * 8GB: 92681k
1499 * 16GB: 131072k
1500 *
1501 * This allows larger machines to have larger/more transfers.
1502 * Limit the default to 256M
1503 */
1504 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1505 if (nfs_congestion_kb > 256*1024)
1506 nfs_congestion_kb = 256*1024;
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
1509}
1510
David Brownell266bee82006-06-27 12:59:15 -07001511void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 mempool_destroy(nfs_commit_mempool);
1514 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001515 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517