blob: 0c346d79fb34acd38124c9988301251ffd2a1ce6 [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{
Trond Myklebust587142f2007-07-02 09:57:54 -0400127 struct inode *inode = page->mapping->host;
Trond Myklebust277459d2006-12-05 00:35:35 -0500128 struct nfs_page *req = NULL;
Trond Myklebust277459d2006-12-05 00:35:35 -0500129
Trond Myklebust587142f2007-07-02 09:57:54 -0400130 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500131 req = nfs_page_find_request_locked(page);
Trond Myklebust587142f2007-07-02 09:57:54 -0400132 spin_unlock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500133 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
Trond Myklebust9cccef92007-07-22 17:09:05 -0400246 * May return an error if the user signalled nfs_wait_on_request().
Trond Myklebuste261f512006-12-05 00:35:41 -0500247 */
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400248static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
249 struct page *page)
Trond Myklebuste261f512006-12-05 00:35:41 -0500250{
Trond Myklebust587142f2007-07-02 09:57:54 -0400251 struct inode *inode = page->mapping->host;
252 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebuste261f512006-12-05 00:35:41 -0500253 struct nfs_page *req;
Trond Myklebuste261f512006-12-05 00:35:41 -0500254 int ret;
255
Trond Myklebust587142f2007-07-02 09:57:54 -0400256 spin_lock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500257 for(;;) {
258 req = nfs_page_find_request_locked(page);
259 if (req == NULL) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400260 spin_unlock(&inode->i_lock);
Trond Myklebust9cccef92007-07-22 17:09:05 -0400261 return 0;
Trond Myklebuste261f512006-12-05 00:35:41 -0500262 }
263 if (nfs_lock_request_dontget(req))
264 break;
265 /* Note: If we hold the page lock, as is the case in nfs_writepage,
266 * then the call to nfs_lock_request_dontget() will always
267 * succeed provided that someone hasn't already marked the
268 * request as dirty (in which case we don't care).
269 */
Trond Myklebust587142f2007-07-02 09:57:54 -0400270 spin_unlock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500271 ret = nfs_wait_on_request(req);
272 nfs_release_request(req);
273 if (ret != 0)
274 return ret;
Trond Myklebust587142f2007-07-02 09:57:54 -0400275 spin_lock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500276 }
Trond Myklebust612c9382007-04-20 16:12:45 -0400277 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
278 /* This request is marked for commit */
Trond Myklebust587142f2007-07-02 09:57:54 -0400279 spin_unlock(&inode->i_lock);
Trond Myklebust612c9382007-04-20 16:12:45 -0400280 nfs_unlock_request(req);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400281 nfs_pageio_complete(pgio);
Trond Myklebust9cccef92007-07-22 17:09:05 -0400282 return 0;
Trond Myklebust612c9382007-04-20 16:12:45 -0400283 }
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400284 if (nfs_set_page_writeback(page) != 0) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400285 spin_unlock(&inode->i_lock);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400286 BUG();
287 }
288 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400289 NFS_PAGE_TAG_LOCKED);
Trond Myklebust587142f2007-07-02 09:57:54 -0400290 spin_unlock(&inode->i_lock);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400291 nfs_pageio_add_request(pgio, req);
Trond Myklebust9cccef92007-07-22 17:09:05 -0400292 return 0;
Trond Myklebuste261f512006-12-05 00:35:41 -0500293}
294
295/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * Write an mmapped page to the server.
297 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500298static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400300 struct nfs_pageio_descriptor mypgio, *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct inode *inode = page->mapping->host;
Trond Myklebuste261f512006-12-05 00:35:41 -0500302 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Chuck Lever91d5b472006-03-20 13:44:14 -0500304 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
305 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
306
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400307 if (wbc->for_writepages)
308 pgio = wbc->fs_private;
309 else {
310 nfs_pageio_init_write(&mypgio, inode, wb_priority(wbc));
311 pgio = &mypgio;
312 }
313
Trond Myklebust7fe7f842007-05-20 10:18:27 -0400314 nfs_pageio_cond_complete(pgio, page->index);
315
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400316 err = nfs_page_async_flush(pgio, page);
Trond Myklebust49a70f22006-12-05 00:35:38 -0500317
Trond Myklebust200baa22006-12-05 00:35:40 -0500318 if (!wbc->for_writepages)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400319 nfs_pageio_complete(pgio);
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500320 return err;
321}
322
323int nfs_writepage(struct page *page, struct writeback_control *wbc)
324{
325 int err;
326
327 err = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return err;
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
333{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct inode *inode = mapping->host;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400335 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 int err;
337
Chuck Lever91d5b472006-03-20 13:44:14 -0500338 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
339
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400340 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
341 wbc->fs_private = &pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 err = generic_writepages(mapping, wbc);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400343 nfs_pageio_complete(&pgio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (err)
345 return err;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400346 if (pgio.pg_error)
347 return pgio.pg_error;
348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
351/*
352 * Insert a write request into an inode
353 */
354static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
355{
356 struct nfs_inode *nfsi = NFS_I(inode);
357 int error;
358
359 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
360 BUG_ON(error == -EEXIST);
361 if (error)
362 return error;
363 if (!nfsi->npages) {
364 igrab(inode);
365 nfs_begin_data_update(inode);
366 if (nfs_have_delegation(inode, FMODE_WRITE))
367 nfsi->change_attr++;
368 }
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500369 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500370 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 nfsi->npages++;
Trond Myklebustc03b4022007-06-17 13:26:38 -0400372 kref_get(&req->wb_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375
376/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800377 * Remove a write request from an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
379static void nfs_inode_remove_request(struct nfs_page *req)
380{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400381 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct nfs_inode *nfsi = NFS_I(inode);
383
384 BUG_ON (!NFS_WBACK_BUSY(req));
385
Trond Myklebust587142f2007-07-02 09:57:54 -0400386 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500387 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500388 ClearPagePrivate(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
390 nfsi->npages--;
391 if (!nfsi->npages) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400392 spin_unlock(&inode->i_lock);
Trond Myklebust951a1432005-06-22 17:16:30 +0000393 nfs_end_data_update(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 iput(inode);
395 } else
Trond Myklebust587142f2007-07-02 09:57:54 -0400396 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 nfs_clear_request(req);
398 nfs_release_request(req);
399}
400
Trond Myklebust61822ab2006-12-05 00:35:42 -0500401static void
402nfs_redirty_request(struct nfs_page *req)
403{
Trond Myklebust61822ab2006-12-05 00:35:42 -0500404 __set_page_dirty_nobuffers(req->wb_page);
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
408 * Check if a request is dirty
409 */
410static inline int
411nfs_dirty_request(struct nfs_page *req)
412{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400413 struct page *page = req->wb_page;
414
Trond Myklebust612c9382007-04-20 16:12:45 -0400415 if (page == NULL || test_bit(PG_NEED_COMMIT, &req->wb_flags))
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400416 return 0;
417 return !PageWriteback(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
420#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
421/*
422 * Add a request to the inode's commit list.
423 */
424static void
425nfs_mark_request_commit(struct nfs_page *req)
426{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400427 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct nfs_inode *nfsi = NFS_I(inode);
429
Trond Myklebust587142f2007-07-02 09:57:54 -0400430 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 nfsi->ncommit++;
Trond Myklebust612c9382007-04-20 16:12:45 -0400432 set_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust5c369682007-06-17 15:27:42 -0400433 radix_tree_tag_set(&nfsi->nfs_page_tree,
434 req->wb_index,
435 NFS_PAGE_TAG_COMMIT);
Trond Myklebust587142f2007-07-02 09:57:54 -0400436 spin_unlock(&inode->i_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700437 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebusta1803042006-12-05 00:45:19 -0500438 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400440
441static inline
442int nfs_write_need_commit(struct nfs_write_data *data)
443{
444 return data->verf.committed != NFS_FILE_SYNC;
445}
446
447static inline
448int nfs_reschedule_unstable_write(struct nfs_page *req)
449{
Trond Myklebust612c9382007-04-20 16:12:45 -0400450 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400451 nfs_mark_request_commit(req);
452 return 1;
453 }
454 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
455 nfs_redirty_request(req);
456 return 1;
457 }
458 return 0;
459}
460#else
461static inline void
462nfs_mark_request_commit(struct nfs_page *req)
463{
464}
465
466static inline
467int nfs_write_need_commit(struct nfs_write_data *data)
468{
469 return 0;
470}
471
472static inline
473int nfs_reschedule_unstable_write(struct nfs_page *req)
474{
475 return 0;
476}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#endif
478
479/*
480 * Wait for a request to complete.
481 *
482 * Interruptible by signals only if mounted with intr flag.
483 */
Trond Myklebustca52fec2007-04-17 17:22:13 -0400484static int nfs_wait_on_requests_locked(struct inode *inode, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct nfs_inode *nfsi = NFS_I(inode);
487 struct nfs_page *req;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400488 pgoff_t idx_end, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 unsigned int res = 0;
490 int error;
491
492 if (npages == 0)
493 idx_end = ~0;
494 else
495 idx_end = idx_start + npages - 1;
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 next = idx_start;
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400498 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 -0700499 if (req->wb_index > idx_end)
500 break;
501
502 next = req->wb_index + 1;
Trond Myklebustc6a556b2005-06-22 17:16:30 +0000503 BUG_ON(!NFS_WBACK_BUSY(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Trond Myklebustc03b4022007-06-17 13:26:38 -0400505 kref_get(&req->wb_kref);
Trond Myklebust587142f2007-07-02 09:57:54 -0400506 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 error = nfs_wait_on_request(req);
508 nfs_release_request(req);
Trond Myklebust587142f2007-07-02 09:57:54 -0400509 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (error < 0)
511 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 res++;
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return res;
515}
516
Trond Myklebust83715ad2006-07-05 13:17:12 -0400517static void nfs_cancel_commit_list(struct list_head *head)
518{
519 struct nfs_page *req;
520
521 while(!list_empty(head)) {
522 req = nfs_list_entry(head->next);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700523 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400524 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -0400525 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400526 nfs_inode_remove_request(req);
Trond Myklebustb6dff262006-10-19 23:28:38 -0700527 nfs_unlock_request(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -0400528 }
529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
532/*
533 * nfs_scan_commit - Scan an inode for commit requests
534 * @inode: NFS inode to scan
535 * @dst: destination list
536 * @idx_start: lower bound of page->index to scan.
537 * @npages: idx_start + npages sets the upper bound to scan.
538 *
539 * Moves requests from the inode's 'commit' request list.
540 * The requests are *not* checked to ensure that they form a contiguous set.
541 */
542static int
Trond Myklebustca52fec2007-04-17 17:22:13 -0400543nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000546 int res = 0;
547
548 if (nfsi->ncommit != 0) {
Trond Myklebust5c369682007-06-17 15:27:42 -0400549 res = nfs_scan_list(nfsi, dst, idx_start, npages,
550 NFS_PAGE_TAG_COMMIT);
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000551 nfsi->ncommit -= res;
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return res;
554}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500555#else
Trond Myklebustca52fec2007-04-17 17:22:13 -0400556static 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 -0500557{
558 return 0;
559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#endif
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*
563 * Try to update any existing write request, or create one if there is none.
564 * In order to match, the request's credentials must match those of
565 * the calling process.
566 *
567 * Note: Should always be called with the Page Lock held!
568 */
569static struct nfs_page * nfs_update_request(struct nfs_open_context* ctx,
Trond Myklebuste21195a2006-12-05 00:35:39 -0500570 struct page *page, unsigned int offset, unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Peter Zijlstra89a09142007-03-16 13:38:26 -0800572 struct address_space *mapping = page->mapping;
573 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct nfs_page *req, *new = NULL;
Trond Myklebustca52fec2007-04-17 17:22:13 -0400575 pgoff_t rqend, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 end = offset + bytes;
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 for (;;) {
580 /* Loop over all inode entries and see if we find
581 * A request for the page we wish to update
582 */
Trond Myklebust587142f2007-07-02 09:57:54 -0400583 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500584 req = nfs_page_find_request_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (req) {
586 if (!nfs_lock_request_dontget(req)) {
587 int error;
Trond Myklebust277459d2006-12-05 00:35:35 -0500588
Trond Myklebust587142f2007-07-02 09:57:54 -0400589 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 error = nfs_wait_on_request(req);
591 nfs_release_request(req);
Neil Brown1dd594b2006-03-20 13:44:04 -0500592 if (error < 0) {
593 if (new)
594 nfs_release_request(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return ERR_PTR(error);
Neil Brown1dd594b2006-03-20 13:44:04 -0500596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 continue;
598 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400599 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (new)
601 nfs_release_request(new);
602 break;
603 }
604
605 if (new) {
606 int error;
607 nfs_lock_request_dontget(new);
608 error = nfs_inode_add_request(inode, new);
609 if (error) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400610 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 nfs_unlock_request(new);
612 return ERR_PTR(error);
613 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400614 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return new;
616 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400617 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 new = nfs_create_request(ctx, inode, page, offset, bytes);
620 if (IS_ERR(new))
621 return new;
622 }
623
624 /* We have a request for our page.
625 * If the creds don't match, or the
626 * page addresses don't match,
627 * tell the caller to wait on the conflicting
628 * request.
629 */
630 rqend = req->wb_offset + req->wb_bytes;
631 if (req->wb_context != ctx
632 || req->wb_page != page
633 || !nfs_dirty_request(req)
634 || offset > rqend || end < req->wb_offset) {
635 nfs_unlock_request(req);
636 return ERR_PTR(-EBUSY);
637 }
638
639 /* Okay, the request matches. Update the region */
640 if (offset < req->wb_offset) {
641 req->wb_offset = offset;
642 req->wb_pgbase = offset;
643 req->wb_bytes = rqend - req->wb_offset;
644 }
645
646 if (end > rqend)
647 req->wb_bytes = end - req->wb_offset;
648
649 return req;
650}
651
652int nfs_flush_incompatible(struct file *file, struct page *page)
653{
654 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500656 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * Look for a request corresponding to this page. If there
659 * is one, and it belongs to another file, we flush it out
660 * before we try to copy anything into the page. Do this
661 * due to the lack of an ACCESS-type call in NFSv2.
662 * Also do the same if we find a request from an existing
663 * dropped page.
664 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500665 do {
666 req = nfs_page_find_request(page);
667 if (req == NULL)
668 return 0;
669 do_flush = req->wb_page != page || req->wb_context != ctx
Trond Myklebuste261f512006-12-05 00:35:41 -0500670 || !nfs_dirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500672 if (!do_flush)
673 return 0;
674 status = nfs_wb_page(page->mapping->host, page);
675 } while (status == 0);
676 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
679/*
680 * Update and possibly write a cached page of an NFS file.
681 *
682 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
683 * things with a page scheduled for an RPC call (e.g. invalidate it).
684 */
685int nfs_updatepage(struct file *file, struct page *page,
686 unsigned int offset, unsigned int count)
687{
688 struct nfs_open_context *ctx = (struct nfs_open_context *)file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 int status = 0;
691
Chuck Lever91d5b472006-03-20 13:44:14 -0500692 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 dprintk("NFS: nfs_updatepage(%s/%s %d@%Ld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800695 file->f_path.dentry->d_parent->d_name.name,
696 file->f_path.dentry->d_name.name, count,
Chuck Lever0bbacc42005-11-01 16:53:32 -0500697 (long long)(page_offset(page) +offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* If we're not using byte range locks, and we know the page
700 * is entirely in cache, it may be more efficient to avoid
701 * fragmenting write requests.
702 */
Trond Myklebustab0a3db2005-06-22 17:16:30 +0000703 if (PageUptodate(page) && inode->i_flock == NULL && !(file->f_mode & O_SYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500704 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
Trond Myklebuste21195a2006-12-05 00:35:39 -0500708 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebuste261f512006-12-05 00:35:41 -0500709 __set_page_dirty_nobuffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 dprintk("NFS: nfs_updatepage returns %d (isize %Ld)\n",
712 status, (long long)i_size_read(inode));
713 if (status < 0)
Trond Myklebusta301b772007-02-06 11:07:15 -0800714 nfs_set_pageerror(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return status;
716}
717
718static void nfs_writepage_release(struct nfs_page *req)
719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Trond Myklebust44dd1512007-05-19 11:58:03 -0400721 if (PageError(req->wb_page)) {
722 nfs_end_page_writeback(req->wb_page);
723 nfs_inode_remove_request(req);
724 } else if (!nfs_reschedule_unstable_write(req)) {
725 /* Set the PG_uptodate flag */
726 nfs_mark_uptodate(req->wb_page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400727 nfs_end_page_writeback(req->wb_page);
728 nfs_inode_remove_request(req);
729 } else
730 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400731 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734static inline int flush_task_priority(int how)
735{
736 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
737 case FLUSH_HIGHPRI:
738 return RPC_PRIORITY_HIGH;
739 case FLUSH_LOWPRI:
740 return RPC_PRIORITY_LOW;
741 }
742 return RPC_PRIORITY_NORMAL;
743}
744
745/*
746 * Set up the argument/result storage required for the RPC call.
747 */
748static void nfs_write_rpcsetup(struct nfs_page *req,
749 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500750 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned int count, unsigned int offset,
752 int how)
753{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -0500755 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 /* Set up the RPC argument and reply structs
758 * NB: take care not to mess about with data->commit et al. */
759
760 data->req = req;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400761 data->inode = inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 data->cred = req->wb_context->cred;
763
764 data->args.fh = NFS_FH(inode);
765 data->args.offset = req_offset(req) + offset;
766 data->args.pgbase = req->wb_pgbase + offset;
767 data->args.pages = data->pagevec;
768 data->args.count = count;
769 data->args.context = req->wb_context;
770
771 data->res.fattr = &data->fattr;
772 data->res.count = count;
773 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400774 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Trond Myklebust788e7a82006-03-20 13:44:27 -0500776 /* Set up the initial task struct. */
777 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
778 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, call_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 NFS_PROTO(inode)->write_setup(data, how);
780
781 data->task.tk_priority = flush_task_priority(how);
782 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Chuck Levera3f565b2007-01-31 12:14:01 -0500784 dprintk("NFS: %5u initiated write call "
785 "(req %s/%Ld, %u bytes @ offset %Lu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500786 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 inode->i_sb->s_id,
788 (long long)NFS_FILEID(inode),
789 count,
790 (unsigned long long)data->args.offset);
791}
792
793static void nfs_execute_write(struct nfs_write_data *data)
794{
795 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
796 sigset_t oldset;
797
798 rpc_clnt_sigmask(clnt, &oldset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 rpc_execute(&data->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 rpc_clnt_sigunmask(clnt, &oldset);
801}
802
803/*
804 * Generate multiple small requests to write out a single
805 * contiguous dirty area on one page.
806 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400807static 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 -0700808{
809 struct nfs_page *req = nfs_list_entry(head->next);
810 struct page *page = req->wb_page;
811 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700812 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
813 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 int requests = 0;
815 LIST_HEAD(list);
816
817 nfs_list_remove_request(req);
818
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400819 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700820 do {
821 size_t len = min(nbytes, wsize);
822
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400823 data = nfs_writedata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (!data)
825 goto out_bad;
826 list_add(&data->pages, &list);
827 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700828 nbytes -= len;
829 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 atomic_set(&req->wb_complete, requests);
831
832 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400834 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 do {
836 data = list_entry(list.next, struct nfs_write_data, pages);
837 list_del_init(&data->pages);
838
839 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400841 if (nbytes < wsize)
842 wsize = nbytes;
843 nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
844 wsize, offset, how);
845 offset += wsize;
846 nbytes -= wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 nfs_execute_write(data);
848 } while (nbytes != 0);
849
850 return 0;
851
852out_bad:
853 while (!list_empty(&list)) {
854 data = list_entry(list.next, struct nfs_write_data, pages);
855 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500856 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500858 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400859 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400860 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return -ENOMEM;
862}
863
864/*
865 * Create an RPC task for the given write request and kick it.
866 * The page must have been locked by the caller.
867 *
868 * It may happen that the page we're passed is not marked dirty.
869 * This is the case if nfs_updatepage detects a conflicting request
870 * that has been written but not committed.
871 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400872static 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 -0700873{
874 struct nfs_page *req;
875 struct page **pages;
876 struct nfs_write_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400878 data = nfs_writedata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!data)
880 goto out_bad;
881
882 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 while (!list_empty(head)) {
884 req = nfs_list_entry(head->next);
885 nfs_list_remove_request(req);
886 nfs_list_add_request(req, &data->pages);
887 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890 req = nfs_list_entry(data->pages.next);
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 /* Set up the argument struct */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500893 nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 nfs_execute_write(data);
896 return 0;
897 out_bad:
898 while (!list_empty(head)) {
Trond Myklebust10afec92007-05-14 17:16:04 -0400899 req = nfs_list_entry(head->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500901 nfs_redirty_request(req);
Trond Myklebust6d677e32007-04-20 16:12:40 -0400902 nfs_end_page_writeback(req->wb_page);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400903 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905 return -ENOMEM;
906}
907
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400908static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
909 struct inode *inode, int ioflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Trond Myklebust7d46a492006-03-20 13:44:50 -0500911 int wsize = NFS_SERVER(inode)->wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400913 if (wsize < PAGE_CACHE_SIZE)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400914 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400915 else
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400916 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
919/*
920 * Handle a write reply that flushed part of a page.
921 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500922static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500924 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 struct nfs_page *req = data->req;
926 struct page *page = req->wb_page;
927
928 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400929 req->wb_context->path.dentry->d_inode->i_sb->s_id,
930 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 req->wb_bytes,
932 (long long)req_offset(req));
933
Trond Myklebust788e7a82006-03-20 13:44:27 -0500934 if (nfs_writeback_done(task, data) != 0)
935 return;
936
937 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -0800938 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500939 req->wb_context->error = task->tk_status;
940 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400941 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 }
943
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400944 if (nfs_write_need_commit(data)) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400945 struct inode *inode = page->mapping->host;
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400946
Trond Myklebust587142f2007-07-02 09:57:54 -0400947 spin_lock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400948 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
949 /* Do nothing we need to resend the writes */
950 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
951 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
952 dprintk(" defer commit\n");
953 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
954 set_bit(PG_NEED_RESCHED, &req->wb_flags);
955 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
956 dprintk(" server reboot detected\n");
957 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400958 spin_unlock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400959 } else
960 dprintk(" OK\n");
961
962out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 if (atomic_dec_and_test(&req->wb_complete))
964 nfs_writepage_release(req);
965}
966
Trond Myklebust788e7a82006-03-20 13:44:27 -0500967static const struct rpc_call_ops nfs_write_partial_ops = {
968 .rpc_call_done = nfs_writeback_done_partial,
969 .rpc_release = nfs_writedata_release,
970};
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
973 * Handle a write reply that flushes a whole page.
974 *
975 * FIXME: There is an inherent race with invalidate_inode_pages and
976 * writebacks since the page->count is kept > 1 for as long
977 * as the page has a write request pending.
978 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500979static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500981 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct nfs_page *req;
983 struct page *page;
984
Trond Myklebust788e7a82006-03-20 13:44:27 -0500985 if (nfs_writeback_done(task, data) != 0)
986 return;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /* Update attributes as result of writeback. */
989 while (!list_empty(&data->pages)) {
990 req = nfs_list_entry(data->pages.next);
991 nfs_list_remove_request(req);
992 page = req->wb_page;
993
994 dprintk("NFS: write (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400995 req->wb_context->path.dentry->d_inode->i_sb->s_id,
996 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 req->wb_bytes,
998 (long long)req_offset(req));
999
Trond Myklebust788e7a82006-03-20 13:44:27 -05001000 if (task->tk_status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001001 nfs_set_pageerror(page);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001002 req->wb_context->error = task->tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001003 dprintk(", error = %d\n", task->tk_status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001004 goto remove_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001007 if (nfs_write_need_commit(data)) {
1008 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1009 nfs_mark_request_commit(req);
1010 nfs_end_page_writeback(page);
1011 dprintk(" marked for commit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 goto next;
1013 }
Trond Myklebust44dd1512007-05-19 11:58:03 -04001014 /* Set the PG_uptodate flag? */
1015 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001016 dprintk(" OK\n");
1017remove_request:
1018 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 nfs_inode_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001021 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023}
1024
Trond Myklebust788e7a82006-03-20 13:44:27 -05001025static const struct rpc_call_ops nfs_write_full_ops = {
1026 .rpc_call_done = nfs_writeback_done_full,
1027 .rpc_release = nfs_writedata_release,
1028};
1029
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*
1032 * This function is called when the WRITE call is complete.
1033 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001034int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 struct nfs_writeargs *argp = &data->args;
1037 struct nfs_writeres *resp = &data->res;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001038 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Chuck Levera3f565b2007-01-31 12:14:01 -05001040 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 task->tk_pid, task->tk_status);
1042
Chuck Leverf551e442006-09-20 14:33:04 -04001043 /*
1044 * ->write_done will attempt to use post-op attributes to detect
1045 * conflicting writes by other clients. A strict interpretation
1046 * of close-to-open would allow us to continue caching even if
1047 * another writer had changed the file, but some applications
1048 * depend on tighter cache coherency when writing.
1049 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001050 status = NFS_PROTO(data->inode)->write_done(task, data);
1051 if (status != 0)
1052 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001053 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1056 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1057 /* We tried a write call, but the server did not
1058 * commit data to stable storage even though we
1059 * requested it.
1060 * Note: There is a known bug in Tru64 < 5.0 in which
1061 * the server reports NFS_DATA_SYNC, but performs
1062 * NFS_FILE_SYNC. We therefore implement this checking
1063 * as a dprintk() in order to avoid filling syslog.
1064 */
1065 static unsigned long complain;
1066
1067 if (time_before(complain, jiffies)) {
1068 dprintk("NFS: faulty NFS server %s:"
1069 " (committed = %d) != (stable = %d)\n",
David Howells54ceac42006-08-22 20:06:13 -04001070 NFS_SERVER(data->inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 resp->verf->committed, argp->stable);
1072 complain = jiffies + 300 * HZ;
1073 }
1074 }
1075#endif
1076 /* Is this a short write? */
1077 if (task->tk_status >= 0 && resp->count < argp->count) {
1078 static unsigned long complain;
1079
Chuck Lever91d5b472006-03-20 13:44:14 -05001080 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /* Has the server at least made some progress? */
1083 if (resp->count != 0) {
1084 /* Was this an NFSv2 write or an NFSv3 stable write? */
1085 if (resp->verf->committed != NFS_UNSTABLE) {
1086 /* Resend from where the server left off */
1087 argp->offset += resp->count;
1088 argp->pgbase += resp->count;
1089 argp->count -= resp->count;
1090 } else {
1091 /* Resend as a stable write in order to avoid
1092 * headaches in the case of a server crash.
1093 */
1094 argp->stable = NFS_FILE_SYNC;
1095 }
1096 rpc_restart_call(task);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001097 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
1099 if (time_before(complain, jiffies)) {
1100 printk(KERN_WARNING
1101 "NFS: Server wrote zero bytes, expected %u.\n",
1102 argp->count);
1103 complain = jiffies + 300 * HZ;
1104 }
1105 /* Can't do anything about it except throw an error. */
1106 task->tk_status = -EIO;
1107 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001108 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111
1112#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001113void nfs_commit_release(void *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 nfs_commit_free(wdata);
1116}
1117
1118/*
1119 * Set up the argument/result storage required for the RPC call.
1120 */
1121static void nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001122 struct nfs_write_data *data,
1123 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124{
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001125 struct nfs_page *first;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 struct inode *inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001127 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /* Set up the RPC argument and reply structs
1130 * NB: take care not to mess about with data->commit et al. */
1131
1132 list_splice_init(head, &data->pages);
1133 first = nfs_list_entry(data->pages.next);
Trond Myklebust88be9f92007-06-05 10:42:27 -04001134 inode = first->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 data->inode = inode;
1137 data->cred = first->wb_context->cred;
1138
1139 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001140 /* Note: we always request a commit of the entire inode */
1141 data->args.offset = 0;
1142 data->args.count = 0;
1143 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 data->res.fattr = &data->fattr;
1145 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001146 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001147
1148 /* Set up the initial task struct. */
1149 flags = (how & FLUSH_SYNC) ? 0 : RPC_TASK_ASYNC;
1150 rpc_init_task(&data->task, NFS_CLIENT(inode), flags, &nfs_commit_ops, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 NFS_PROTO(inode)->commit_setup(data, how);
1152
1153 data->task.tk_priority = flush_task_priority(how);
1154 data->task.tk_cookie = (unsigned long)inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Chuck Levera3f565b2007-01-31 12:14:01 -05001156 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/*
1160 * Commit dirty pages
1161 */
1162static int
Chuck Lever40859d72005-11-30 18:09:02 -05001163nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 struct nfs_write_data *data;
1166 struct nfs_page *req;
1167
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001168 data = nfs_commit_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 if (!data)
1171 goto out_bad;
1172
1173 /* Set up the argument struct */
1174 nfs_commit_rpcsetup(head, data, how);
1175
1176 nfs_execute_write(data);
1177 return 0;
1178 out_bad:
1179 while (!list_empty(head)) {
1180 req = nfs_list_entry(head->next);
1181 nfs_list_remove_request(req);
1182 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001183 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001184 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 return -ENOMEM;
1187}
1188
1189/*
1190 * COMMIT call returned
1191 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001192static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001194 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 struct nfs_page *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Chuck Levera3f565b2007-01-31 12:14:01 -05001197 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 task->tk_pid, task->tk_status);
1199
Trond Myklebust788e7a82006-03-20 13:44:27 -05001200 /* Call the NFS version-specific code */
1201 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1202 return;
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 while (!list_empty(&data->pages)) {
1205 req = nfs_list_entry(data->pages.next);
1206 nfs_list_remove_request(req);
Trond Myklebust612c9382007-04-20 16:12:45 -04001207 clear_bit(PG_NEED_COMMIT, &(req)->wb_flags);
Christoph Lameterfd39fc82006-06-30 01:55:40 -07001208 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 dprintk("NFS: commit (%s/%Ld %d@%Ld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001211 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1212 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 req->wb_bytes,
1214 (long long)req_offset(req));
1215 if (task->tk_status < 0) {
1216 req->wb_context->error = task->tk_status;
1217 nfs_inode_remove_request(req);
1218 dprintk(", error = %d\n", task->tk_status);
1219 goto next;
1220 }
1221
1222 /* Okay, COMMIT succeeded, apparently. Check the verifier
1223 * returned by the server against all stored verfs. */
1224 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1225 /* We have a match */
Trond Myklebust44dd1512007-05-19 11:58:03 -04001226 /* Set the PG_uptodate flag */
1227 nfs_mark_uptodate(req->wb_page, req->wb_pgbase,
1228 req->wb_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 nfs_inode_remove_request(req);
1230 dprintk(" OK\n");
1231 goto next;
1232 }
1233 /* We have a mismatch. Write the page again */
1234 dprintk(" mismatch\n");
Trond Myklebust61822ab2006-12-05 00:35:42 -05001235 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001237 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001240
1241static const struct rpc_call_ops nfs_commit_ops = {
1242 .rpc_call_done = nfs_commit_done,
1243 .rpc_release = nfs_commit_release,
1244};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001246int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 LIST_HEAD(head);
Trond Myklebust7d46a492006-03-20 13:44:50 -05001249 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Trond Myklebust587142f2007-07-02 09:57:54 -04001251 spin_lock(&inode->i_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001252 res = nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebust587142f2007-07-02 09:57:54 -04001253 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001255 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001256 if (error < 0)
1257 return error;
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return res;
1260}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001261#else
1262static inline int nfs_commit_list(struct inode *inode, struct list_head *head, int how)
1263{
1264 return 0;
1265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266#endif
1267
Trond Myklebust1c759502006-10-09 16:18:38 -04001268long nfs_sync_mapping_wait(struct address_space *mapping, struct writeback_control *wbc, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Trond Myklebust1c759502006-10-09 16:18:38 -04001270 struct inode *inode = mapping->host;
Trond Myklebustca52fec2007-04-17 17:22:13 -04001271 pgoff_t idx_start, idx_end;
Trond Myklebust1c759502006-10-09 16:18:38 -04001272 unsigned int npages = 0;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001273 LIST_HEAD(head);
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001274 int nocommit = how & FLUSH_NOCOMMIT;
Trond Myklebust3f442542006-09-17 14:46:44 -04001275 long pages, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Trond Myklebust1c759502006-10-09 16:18:38 -04001277 /* FIXME */
1278 if (wbc->range_cyclic)
1279 idx_start = 0;
1280 else {
1281 idx_start = wbc->range_start >> PAGE_CACHE_SHIFT;
1282 idx_end = wbc->range_end >> PAGE_CACHE_SHIFT;
1283 if (idx_end > idx_start) {
Trond Myklebustca52fec2007-04-17 17:22:13 -04001284 pgoff_t l_npages = 1 + idx_end - idx_start;
Trond Myklebust1c759502006-10-09 16:18:38 -04001285 npages = l_npages;
1286 if (sizeof(npages) != sizeof(l_npages) &&
Trond Myklebustca52fec2007-04-17 17:22:13 -04001287 (pgoff_t)npages != l_npages)
Trond Myklebust1c759502006-10-09 16:18:38 -04001288 npages = 0;
1289 }
1290 }
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001291 how &= ~FLUSH_NOCOMMIT;
Trond Myklebust587142f2007-07-02 09:57:54 -04001292 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 do {
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001294 ret = nfs_wait_on_requests_locked(inode, idx_start, npages);
1295 if (ret != 0)
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001296 continue;
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001297 if (nocommit)
1298 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001299 pages = nfs_scan_commit(inode, &head, idx_start, npages);
Trond Myklebust724c4392007-04-17 17:22:13 -04001300 if (pages == 0)
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001301 break;
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001302 if (how & FLUSH_INVALIDATE) {
Trond Myklebust587142f2007-07-02 09:57:54 -04001303 spin_unlock(&inode->i_lock);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001304 nfs_cancel_commit_list(&head);
Trond Myklebuste8e058e2006-11-15 17:31:56 -05001305 ret = pages;
Trond Myklebust587142f2007-07-02 09:57:54 -04001306 spin_lock(&inode->i_lock);
Trond Myklebustd2ccddf2006-05-31 01:13:38 -04001307 continue;
1308 }
1309 pages += nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebust587142f2007-07-02 09:57:54 -04001310 spin_unlock(&inode->i_lock);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001311 ret = nfs_commit_list(inode, &head, how);
Trond Myklebust587142f2007-07-02 09:57:54 -04001312 spin_lock(&inode->i_lock);
1313
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001314 } while (ret >= 0);
Trond Myklebust587142f2007-07-02 09:57:54 -04001315 spin_unlock(&inode->i_lock);
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001316 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Trond Myklebust1c759502006-10-09 16:18:38 -04001319/*
1320 * flush the inode to disk.
1321 */
1322int nfs_wb_all(struct inode *inode)
1323{
1324 struct address_space *mapping = inode->i_mapping;
1325 struct writeback_control wbc = {
1326 .bdi = mapping->backing_dev_info,
1327 .sync_mode = WB_SYNC_ALL,
1328 .nr_to_write = LONG_MAX,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001329 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001330 .range_cyclic = 1,
1331 };
1332 int ret;
1333
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001334 ret = nfs_writepages(mapping, &wbc);
Trond Myklebust61822ab2006-12-05 00:35:42 -05001335 if (ret < 0)
1336 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001337 ret = nfs_sync_mapping_wait(mapping, &wbc, 0);
1338 if (ret >= 0)
1339 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001340out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001341 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001342 return ret;
1343}
1344
1345int nfs_sync_mapping_range(struct address_space *mapping, loff_t range_start, loff_t range_end, int how)
1346{
1347 struct writeback_control wbc = {
1348 .bdi = mapping->backing_dev_info,
1349 .sync_mode = WB_SYNC_ALL,
1350 .nr_to_write = LONG_MAX,
1351 .range_start = range_start,
1352 .range_end = range_end,
Trond Myklebust61822ab2006-12-05 00:35:42 -05001353 .for_writepages = 1,
Trond Myklebust1c759502006-10-09 16:18:38 -04001354 };
1355 int ret;
1356
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001357 ret = nfs_writepages(mapping, &wbc);
1358 if (ret < 0)
1359 goto out;
Trond Myklebust1c759502006-10-09 16:18:38 -04001360 ret = nfs_sync_mapping_wait(mapping, &wbc, how);
1361 if (ret >= 0)
1362 return 0;
Trond Myklebust61822ab2006-12-05 00:35:42 -05001363out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001364 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Trond Myklebust1c759502006-10-09 16:18:38 -04001365 return ret;
1366}
1367
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001368int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1369{
1370 struct nfs_page *req;
1371 loff_t range_start = page_offset(page);
1372 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
1373 struct writeback_control wbc = {
1374 .bdi = page->mapping->backing_dev_info,
1375 .sync_mode = WB_SYNC_ALL,
1376 .nr_to_write = LONG_MAX,
1377 .range_start = range_start,
1378 .range_end = range_end,
1379 };
1380 int ret = 0;
1381
1382 BUG_ON(!PageLocked(page));
1383 for (;;) {
1384 req = nfs_page_find_request(page);
1385 if (req == NULL)
1386 goto out;
1387 if (test_bit(PG_NEED_COMMIT, &req->wb_flags)) {
1388 nfs_release_request(req);
1389 break;
1390 }
1391 if (nfs_lock_request_dontget(req)) {
1392 nfs_inode_remove_request(req);
1393 /*
1394 * In case nfs_inode_remove_request has marked the
1395 * page as being dirty
1396 */
1397 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1398 nfs_unlock_request(req);
1399 break;
1400 }
1401 ret = nfs_wait_on_request(req);
1402 if (ret < 0)
1403 goto out;
1404 }
1405 if (!PagePrivate(page))
1406 return 0;
1407 ret = nfs_sync_mapping_wait(page->mapping, &wbc, FLUSH_INVALIDATE);
1408out:
1409 return ret;
1410}
1411
Trond Myklebust61822ab2006-12-05 00:35:42 -05001412int nfs_wb_page_priority(struct inode *inode, struct page *page, int how)
Trond Myklebust1c759502006-10-09 16:18:38 -04001413{
1414 loff_t range_start = page_offset(page);
1415 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001416 struct writeback_control wbc = {
1417 .bdi = page->mapping->backing_dev_info,
1418 .sync_mode = WB_SYNC_ALL,
1419 .nr_to_write = LONG_MAX,
1420 .range_start = range_start,
1421 .range_end = range_end,
1422 };
1423 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001424
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001425 BUG_ON(!PageLocked(page));
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001426 if (clear_page_dirty_for_io(page)) {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001427 ret = nfs_writepage_locked(page, &wbc);
1428 if (ret < 0)
1429 goto out;
1430 }
Trond Myklebustf40313a2007-01-13 02:28:08 -05001431 if (!PagePrivate(page))
1432 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001433 ret = nfs_sync_mapping_wait(page->mapping, &wbc, how);
1434 if (ret >= 0)
1435 return 0;
1436out:
Trond Myklebuste507d9e2006-12-05 00:35:42 -05001437 __mark_inode_dirty(inode, I_DIRTY_PAGES);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001438 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001439}
1440
1441/*
1442 * Write back all requests on one page - we do this before reading it.
1443 */
1444int nfs_wb_page(struct inode *inode, struct page* page)
1445{
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001446 return nfs_wb_page_priority(inode, page, FLUSH_STABLE);
Trond Myklebust1c759502006-10-09 16:18:38 -04001447}
1448
David Howellsf7b422b2006-06-09 09:34:33 -04001449int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1452 sizeof(struct nfs_write_data),
1453 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001454 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (nfs_wdata_cachep == NULL)
1456 return -ENOMEM;
1457
Matthew Dobson93d23412006-03-26 01:37:50 -08001458 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1459 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 if (nfs_wdata_mempool == NULL)
1461 return -ENOMEM;
1462
Matthew Dobson93d23412006-03-26 01:37:50 -08001463 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1464 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 if (nfs_commit_mempool == NULL)
1466 return -ENOMEM;
1467
Peter Zijlstra89a09142007-03-16 13:38:26 -08001468 /*
1469 * NFS congestion size, scale with available memory.
1470 *
1471 * 64MB: 8192k
1472 * 128MB: 11585k
1473 * 256MB: 16384k
1474 * 512MB: 23170k
1475 * 1GB: 32768k
1476 * 2GB: 46340k
1477 * 4GB: 65536k
1478 * 8GB: 92681k
1479 * 16GB: 131072k
1480 *
1481 * This allows larger machines to have larger/more transfers.
1482 * Limit the default to 256M
1483 */
1484 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1485 if (nfs_congestion_kb > 256*1024)
1486 nfs_congestion_kb = 256*1024;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 return 0;
1489}
1490
David Brownell266bee82006-06-27 12:59:15 -07001491void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
1493 mempool_destroy(nfs_commit_mempool);
1494 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001495 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497