blob: ae035990941a1d69d7440935af12aee45020bb88 [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>
Trond Myklebust074cc1d2009-08-10 08:54:13 -040016#include <linux/migrate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/sunrpc/clnt.h>
19#include <linux/nfs_fs.h>
20#include <linux/nfs_mount.h>
21#include <linux/nfs_page.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070022#include <linux/backing-dev.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "delegation.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050027#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050028#include "iostat.h"
Andy Adamsondef6ed72009-04-01 09:22:26 -040029#include "nfs4_fs.h"
Trond Myklebust074cc1d2009-08-10 08:54:13 -040030#include "fscache.h"
Fred Isaman94ad1c82011-03-01 01:34:14 +000031#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define NFSDBG_FACILITY NFSDBG_PAGECACHE
34
35#define MIN_POOL_WRITE (32)
36#define MIN_POOL_COMMIT (4)
37
38/*
39 * Local function declarations
40 */
Trond Myklebustc63c7b02007-04-02 19:29:52 -040041static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
42 struct inode *inode, int ioflags);
Fred Isamanf8512ad2008-03-19 11:24:39 -040043static void nfs_redirty_request(struct nfs_page *req);
Trond Myklebust788e7a82006-03-20 13:44:27 -050044static const struct rpc_call_ops nfs_write_partial_ops;
45static const struct rpc_call_ops nfs_write_full_ops;
46static const struct rpc_call_ops nfs_commit_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Christoph Lametere18b8902006-12-06 20:33:20 -080048static struct kmem_cache *nfs_wdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050049static mempool_t *nfs_wdata_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static mempool_t *nfs_commit_mempool;
51
Trond Myklebustc9d8f892008-04-15 16:56:39 -040052struct nfs_write_data *nfs_commitdata_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080054 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
Chuck Lever40859d72005-11-30 18:09:02 -050055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (p) {
57 memset(p, 0, sizeof(*p));
58 INIT_LIST_HEAD(&p->pages);
59 }
60 return p;
61}
62
Trond Myklebust5e4424a2008-02-25 21:53:49 -080063void nfs_commit_free(struct nfs_write_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Chuck Lever40859d72005-11-30 18:09:02 -050065 if (p && (p->pagevec != &p->page_array[0]))
66 kfree(p->pagevec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 mempool_free(p, nfs_commit_mempool);
68}
69
Trond Myklebust8d5658c2007-04-10 09:26:35 -040070struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050071{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080072 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050073
74 if (p) {
75 memset(p, 0, sizeof(*p));
76 INIT_LIST_HEAD(&p->pages);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070077 p->npages = pagecount;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040078 if (pagecount <= ARRAY_SIZE(p->page_array))
79 p->pagevec = p->page_array;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050080 else {
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040081 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
82 if (!p->pagevec) {
Trond Myklebust3feb2d42006-03-20 13:44:37 -050083 mempool_free(p, nfs_wdata_mempool);
84 p = NULL;
85 }
86 }
87 }
88 return p;
89}
90
Trond Myklebust1ae88b22009-08-12 09:12:30 -040091void nfs_writedata_free(struct nfs_write_data *p)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050092{
93 if (p && (p->pagevec != &p->page_array[0]))
94 kfree(p->pagevec);
95 mempool_free(p, nfs_wdata_mempool);
96}
97
Trond Myklebust1ae88b22009-08-12 09:12:30 -040098static void nfs_writedata_release(struct nfs_write_data *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Trond Myklebust383ba712008-02-19 20:04:20 -0500100 put_nfs_open_context(wdata->args.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 nfs_writedata_free(wdata);
102}
103
Trond Myklebust7b159fc2007-07-25 14:09:54 -0400104static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
105{
106 ctx->error = error;
107 smp_wmb();
108 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
109}
110
Trond Myklebust277459d2006-12-05 00:35:35 -0500111static struct nfs_page *nfs_page_find_request_locked(struct page *page)
112{
113 struct nfs_page *req = NULL;
114
115 if (PagePrivate(page)) {
116 req = (struct nfs_page *)page_private(page);
117 if (req != NULL)
Trond Myklebustc03b4022007-06-17 13:26:38 -0400118 kref_get(&req->wb_kref);
Trond Myklebust277459d2006-12-05 00:35:35 -0500119 }
120 return req;
121}
122
123static struct nfs_page *nfs_page_find_request(struct page *page)
124{
Trond Myklebust587142f2007-07-02 09:57:54 -0400125 struct inode *inode = page->mapping->host;
Trond Myklebust277459d2006-12-05 00:35:35 -0500126 struct nfs_page *req = NULL;
Trond Myklebust277459d2006-12-05 00:35:35 -0500127
Trond Myklebust587142f2007-07-02 09:57:54 -0400128 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500129 req = nfs_page_find_request_locked(page);
Trond Myklebust587142f2007-07-02 09:57:54 -0400130 spin_unlock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500131 return req;
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* Adjust the file length if we're writing beyond the end */
135static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
136{
137 struct inode *inode = page->mapping->host;
Trond Myklebusta3d01452008-06-11 12:21:19 -0400138 loff_t end, i_size;
139 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Trond Myklebusta3d01452008-06-11 12:21:19 -0400141 spin_lock(&inode->i_lock);
142 i_size = i_size_read(inode);
143 end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (i_size > 0 && page->index < end_index)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400145 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
147 if (i_size >= end)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 i_size_write(inode, end);
Trond Myklebusta3d01452008-06-11 12:21:19 -0400150 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
151out:
152 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Trond Myklebusta301b772007-02-06 11:07:15 -0800155/* A writeback failed: mark the page as bad, and invalidate the page cache */
156static void nfs_set_pageerror(struct page *page)
157{
158 SetPageError(page);
159 nfs_zap_mapping(page->mapping->host, page->mapping);
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/* We can set the PG_uptodate flag if we see that a write request
163 * covers the full page.
164 */
165static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
166{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (PageUptodate(page))
168 return;
169 if (base != 0)
170 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500171 if (count != nfs_page_length(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500173 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176static int wb_priority(struct writeback_control *wbc)
177{
178 if (wbc->for_reclaim)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400179 return FLUSH_HIGHPRI | FLUSH_STABLE;
Wu Fengguangb17621f2009-12-03 13:54:25 +0100180 if (wbc->for_kupdate || wbc->for_background)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return FLUSH_LOWPRI;
182 return 0;
183}
184
185/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800186 * NFS congestion control
187 */
188
189int nfs_congestion_kb;
190
191#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
192#define NFS_CONGESTION_OFF_THRESH \
193 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
194
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400195static int nfs_set_page_writeback(struct page *page)
Peter Zijlstra89a09142007-03-16 13:38:26 -0800196{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400197 int ret = test_set_page_writeback(page);
198
199 if (!ret) {
Peter Zijlstra89a09142007-03-16 13:38:26 -0800200 struct inode *inode = page->mapping->host;
201 struct nfs_server *nfss = NFS_SERVER(inode);
202
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400203 page_cache_get(page);
Peter Zijlstra277866a2007-05-08 00:35:12 -0700204 if (atomic_long_inc_return(&nfss->writeback) >
Jens Axboe8aa7e842009-07-09 14:52:32 +0200205 NFS_CONGESTION_ON_THRESH) {
206 set_bdi_congested(&nfss->backing_dev_info,
207 BLK_RW_ASYNC);
208 }
Peter Zijlstra89a09142007-03-16 13:38:26 -0800209 }
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400210 return ret;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800211}
212
213static void nfs_end_page_writeback(struct page *page)
214{
215 struct inode *inode = page->mapping->host;
216 struct nfs_server *nfss = NFS_SERVER(inode);
217
218 end_page_writeback(page);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400219 page_cache_release(page);
Peter Zijlstrac4dc4be2007-10-16 23:25:41 -0700220 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
Jens Axboe8aa7e842009-07-09 14:52:32 +0200221 clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
Peter Zijlstra89a09142007-03-16 13:38:26 -0800222}
223
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400224static struct nfs_page *nfs_find_and_lock_request(struct page *page, bool nonblock)
Trond Myklebuste261f512006-12-05 00:35:41 -0500225{
Trond Myklebust587142f2007-07-02 09:57:54 -0400226 struct inode *inode = page->mapping->host;
Trond Myklebuste261f512006-12-05 00:35:41 -0500227 struct nfs_page *req;
Trond Myklebuste261f512006-12-05 00:35:41 -0500228 int ret;
229
Trond Myklebust587142f2007-07-02 09:57:54 -0400230 spin_lock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400231 for (;;) {
Trond Myklebuste261f512006-12-05 00:35:41 -0500232 req = nfs_page_find_request_locked(page);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400233 if (req == NULL)
234 break;
Trond Myklebustacee4782008-01-22 17:13:07 -0500235 if (nfs_set_page_tag_locked(req))
Trond Myklebuste261f512006-12-05 00:35:41 -0500236 break;
237 /* Note: If we hold the page lock, as is the case in nfs_writepage,
Trond Myklebustacee4782008-01-22 17:13:07 -0500238 * then the call to nfs_set_page_tag_locked() will always
Trond Myklebuste261f512006-12-05 00:35:41 -0500239 * succeed provided that someone hasn't already marked the
240 * request as dirty (in which case we don't care).
241 */
Trond Myklebust587142f2007-07-02 09:57:54 -0400242 spin_unlock(&inode->i_lock);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400243 if (!nonblock)
244 ret = nfs_wait_on_request(req);
245 else
246 ret = -EAGAIN;
Trond Myklebuste261f512006-12-05 00:35:41 -0500247 nfs_release_request(req);
248 if (ret != 0)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400249 return ERR_PTR(ret);
Trond Myklebust587142f2007-07-02 09:57:54 -0400250 spin_lock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500251 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400252 spin_unlock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400253 return req;
254}
255
256/*
257 * Find an associated nfs write request, and prepare to flush it out
258 * May return an error if the user signalled nfs_wait_on_request().
259 */
260static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400261 struct page *page, bool nonblock)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400262{
263 struct nfs_page *req;
264 int ret = 0;
265
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400266 req = nfs_find_and_lock_request(page, nonblock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400267 if (!req)
268 goto out;
269 ret = PTR_ERR(req);
270 if (IS_ERR(req))
271 goto out;
272
273 ret = nfs_set_page_writeback(page);
274 BUG_ON(ret != 0);
275 BUG_ON(test_bit(PG_CLEAN, &req->wb_flags));
276
Fred Isamanf8512ad2008-03-19 11:24:39 -0400277 if (!nfs_pageio_add_request(pgio, req)) {
278 nfs_redirty_request(req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400279 ret = pgio->pg_error;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400280 }
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400281out:
282 return ret;
Trond Myklebuste261f512006-12-05 00:35:41 -0500283}
284
Trond Myklebustf758c8852007-07-22 19:27:32 -0400285static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
286{
287 struct inode *inode = page->mapping->host;
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400288 int ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400289
290 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
291 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
292
293 nfs_pageio_cond_complete(pgio, page->index);
Wu Fengguang1b430be2010-10-26 14:21:26 -0700294 ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400295 if (ret == -EAGAIN) {
296 redirty_page_for_writepage(wbc, page);
297 ret = 0;
298 }
299 return ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400300}
301
Trond Myklebuste261f512006-12-05 00:35:41 -0500302/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * Write an mmapped page to the server.
304 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500305static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400307 struct nfs_pageio_descriptor pgio;
Trond Myklebuste261f512006-12-05 00:35:41 -0500308 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Trond Myklebustf758c8852007-07-22 19:27:32 -0400310 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc));
311 err = nfs_do_writepage(page, wbc, &pgio);
312 nfs_pageio_complete(&pgio);
313 if (err < 0)
314 return err;
315 if (pgio.pg_error < 0)
316 return pgio.pg_error;
317 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500318}
319
320int nfs_writepage(struct page *page, struct writeback_control *wbc)
321{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400322 int ret;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500323
Trond Myklebustf758c8852007-07-22 19:27:32 -0400324 ret = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 unlock_page(page);
Trond Myklebustf758c8852007-07-22 19:27:32 -0400326 return ret;
327}
328
329static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
330{
331 int ret;
332
333 ret = nfs_do_writepage(page, wbc, data);
334 unlock_page(page);
335 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
339{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct inode *inode = mapping->host;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400341 unsigned long *bitlock = &NFS_I(inode)->flags;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400342 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int err;
344
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400345 /* Stop dirtying of new pages while we sync */
346 err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
347 nfs_wait_bit_killable, TASK_KILLABLE);
348 if (err)
349 goto out_err;
350
Chuck Lever91d5b472006-03-20 13:44:14 -0500351 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
352
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400353 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
Trond Myklebustf758c8852007-07-22 19:27:32 -0400354 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400355 nfs_pageio_complete(&pgio);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400356
357 clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
358 smp_mb__after_clear_bit();
359 wake_up_bit(bitlock, NFS_INO_FLUSHING);
360
Trond Myklebustf758c8852007-07-22 19:27:32 -0400361 if (err < 0)
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400362 goto out_err;
363 err = pgio.pg_error;
364 if (err < 0)
365 goto out_err;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400366 return 0;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400367out_err:
368 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371/*
372 * Insert a write request into an inode
373 */
Trond Myklebuste7d39062008-06-13 12:12:32 -0400374static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct nfs_inode *nfsi = NFS_I(inode);
377 int error;
378
Trond Myklebuste7d39062008-06-13 12:12:32 -0400379 error = radix_tree_preload(GFP_NOFS);
380 if (error != 0)
381 goto out;
382
383 /* Lock the request! */
384 nfs_lock_request_dontget(req);
385
386 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
Nick Piggin27852592008-02-04 23:48:37 -0800388 BUG_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!nfsi->npages) {
390 igrab(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (nfs_have_delegation(inode, FMODE_WRITE))
392 nfsi->change_attr++;
393 }
Trond Myklebust2df485a2010-12-07 22:39:17 -0500394 set_bit(PG_MAPPED, &req->wb_flags);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500395 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500396 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 nfsi->npages++;
Trond Myklebustc03b4022007-06-17 13:26:38 -0400398 kref_get(&req->wb_kref);
Nick Piggin27852592008-02-04 23:48:37 -0800399 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
400 NFS_PAGE_TAG_LOCKED);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400401 spin_unlock(&inode->i_lock);
402 radix_tree_preload_end();
403out:
404 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800408 * Remove a write request from an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
410static void nfs_inode_remove_request(struct nfs_page *req)
411{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400412 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct nfs_inode *nfsi = NFS_I(inode);
414
415 BUG_ON (!NFS_WBACK_BUSY(req));
416
Trond Myklebust587142f2007-07-02 09:57:54 -0400417 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500418 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500419 ClearPagePrivate(req->wb_page);
Trond Myklebust2df485a2010-12-07 22:39:17 -0500420 clear_bit(PG_MAPPED, &req->wb_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
422 nfsi->npages--;
423 if (!nfsi->npages) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400424 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 iput(inode);
426 } else
Trond Myklebust587142f2007-07-02 09:57:54 -0400427 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 nfs_release_request(req);
429}
430
Trond Myklebust61822ab2006-12-05 00:35:42 -0500431static void
Fred6d884e82008-03-19 11:24:38 -0400432nfs_mark_request_dirty(struct nfs_page *req)
Trond Myklebust61822ab2006-12-05 00:35:42 -0500433{
Trond Myklebust61822ab2006-12-05 00:35:42 -0500434 __set_page_dirty_nobuffers(req->wb_page);
Trond Myklebustb80c3cb2010-04-09 19:07:07 -0400435 __mark_inode_dirty(req->wb_page->mapping->host, I_DIRTY_DATASYNC);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
439/*
440 * Add a request to the inode's commit list.
441 */
442static void
443nfs_mark_request_commit(struct nfs_page *req)
444{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400445 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct nfs_inode *nfsi = NFS_I(inode);
447
Trond Myklebust587142f2007-07-02 09:57:54 -0400448 spin_lock(&inode->i_lock);
Trond Myklebuste468bae2008-06-13 13:25:22 -0400449 set_bit(PG_CLEAN, &(req)->wb_flags);
Trond Myklebust5c369682007-06-17 15:27:42 -0400450 radix_tree_tag_set(&nfsi->nfs_page_tree,
451 req->wb_index,
452 NFS_PAGE_TAG_COMMIT);
Trond Myklebustff778d02010-02-19 16:53:39 -0800453 nfsi->ncommit++;
Trond Myklebust587142f2007-07-02 09:57:54 -0400454 spin_unlock(&inode->i_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700455 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -0700456 inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
Trond Myklebusta1803042006-12-05 00:45:19 -0500457 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400459
Trond Myklebuste468bae2008-06-13 13:25:22 -0400460static int
461nfs_clear_request_commit(struct nfs_page *req)
462{
463 struct page *page = req->wb_page;
464
465 if (test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) {
466 dec_zone_page_state(page, NR_UNSTABLE_NFS);
467 dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE);
468 return 1;
469 }
470 return 0;
471}
472
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400473static inline
474int nfs_write_need_commit(struct nfs_write_data *data)
475{
476 return data->verf.committed != NFS_FILE_SYNC;
477}
478
479static inline
480int nfs_reschedule_unstable_write(struct nfs_page *req)
481{
Trond Myklebuste468bae2008-06-13 13:25:22 -0400482 if (test_and_clear_bit(PG_NEED_COMMIT, &req->wb_flags)) {
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400483 nfs_mark_request_commit(req);
484 return 1;
485 }
486 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
Fred6d884e82008-03-19 11:24:38 -0400487 nfs_mark_request_dirty(req);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400488 return 1;
489 }
490 return 0;
491}
492#else
493static inline void
494nfs_mark_request_commit(struct nfs_page *req)
495{
496}
497
Trond Myklebuste468bae2008-06-13 13:25:22 -0400498static inline int
499nfs_clear_request_commit(struct nfs_page *req)
500{
501 return 0;
502}
503
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400504static inline
505int nfs_write_need_commit(struct nfs_write_data *data)
506{
507 return 0;
508}
509
510static inline
511int nfs_reschedule_unstable_write(struct nfs_page *req)
512{
513 return 0;
514}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515#endif
516
Trond Myklebust47c62562009-03-16 08:13:41 -0400517#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400518static int
519nfs_need_commit(struct nfs_inode *nfsi)
520{
521 return radix_tree_tagged(&nfsi->nfs_page_tree, NFS_PAGE_TAG_COMMIT);
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/*
525 * nfs_scan_commit - Scan an inode for commit requests
526 * @inode: NFS inode to scan
527 * @dst: destination list
528 * @idx_start: lower bound of page->index to scan.
529 * @npages: idx_start + npages sets the upper bound to scan.
530 *
531 * Moves requests from the inode's 'commit' request list.
532 * The requests are *not* checked to ensure that they form a contiguous set.
533 */
534static int
Trond Myklebustca52fec2007-04-17 17:22:13 -0400535nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustff778d02010-02-19 16:53:39 -0800538 int ret;
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000539
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400540 if (!nfs_need_commit(nfsi))
541 return 0;
542
Trond Myklebustff778d02010-02-19 16:53:39 -0800543 ret = nfs_scan_list(nfsi, dst, idx_start, npages, NFS_PAGE_TAG_COMMIT);
544 if (ret > 0)
545 nfsi->ncommit -= ret;
Trond Myklebust2928db12010-02-19 17:03:18 -0800546 if (nfs_need_commit(NFS_I(inode)))
547 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Trond Myklebustff778d02010-02-19 16:53:39 -0800548 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500550#else
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400551static inline int nfs_need_commit(struct nfs_inode *nfsi)
552{
553 return 0;
554}
555
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/*
Trond Myklebuste7d39062008-06-13 12:12:32 -0400563 * Search for an existing write request, and attempt to update
564 * it to reflect a new dirty region on a given page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 *
Trond Myklebuste7d39062008-06-13 12:12:32 -0400566 * If the attempt fails, then the existing request is flushed out
567 * to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
Trond Myklebuste7d39062008-06-13 12:12:32 -0400569static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
570 struct page *page,
571 unsigned int offset,
572 unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Trond Myklebuste7d39062008-06-13 12:12:32 -0400574 struct nfs_page *req;
575 unsigned int rqend;
576 unsigned int end;
577 int error;
578
579 if (!PagePrivate(page))
580 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 end = offset + bytes;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400583 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 for (;;) {
Trond Myklebust277459d2006-12-05 00:35:35 -0500586 req = nfs_page_find_request_locked(page);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400587 if (req == NULL)
588 goto out_unlock;
Trond Myklebust277459d2006-12-05 00:35:35 -0500589
Trond Myklebuste7d39062008-06-13 12:12:32 -0400590 rqend = req->wb_offset + req->wb_bytes;
591 /*
592 * Tell the caller to flush out the request if
593 * the offsets are non-contiguous.
594 * Note: nfs_flush_incompatible() will already
595 * have flushed out requests having wrong owners.
596 */
Trond Myklebuste468bae2008-06-13 13:25:22 -0400597 if (offset > rqend
Trond Myklebuste7d39062008-06-13 12:12:32 -0400598 || end < req->wb_offset)
599 goto out_flushme;
600
601 if (nfs_set_page_tag_locked(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Trond Myklebuste7d39062008-06-13 12:12:32 -0400604 /* The request is locked, so wait and then retry */
Trond Myklebust587142f2007-07-02 09:57:54 -0400605 spin_unlock(&inode->i_lock);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400606 error = nfs_wait_on_request(req);
607 nfs_release_request(req);
608 if (error != 0)
609 goto out_err;
610 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Trond Myklebustff778d02010-02-19 16:53:39 -0800613 if (nfs_clear_request_commit(req) &&
614 radix_tree_tag_clear(&NFS_I(inode)->nfs_page_tree,
615 req->wb_index, NFS_PAGE_TAG_COMMIT) != NULL)
616 NFS_I(inode)->ncommit--;
Trond Myklebuste468bae2008-06-13 13:25:22 -0400617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* Okay, the request matches. Update the region */
619 if (offset < req->wb_offset) {
620 req->wb_offset = offset;
621 req->wb_pgbase = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (end > rqend)
624 req->wb_bytes = end - req->wb_offset;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400625 else
626 req->wb_bytes = rqend - req->wb_offset;
627out_unlock:
628 spin_unlock(&inode->i_lock);
629 return req;
630out_flushme:
631 spin_unlock(&inode->i_lock);
632 nfs_release_request(req);
633 error = nfs_wb_page(inode, page);
634out_err:
635 return ERR_PTR(error);
636}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Trond Myklebuste7d39062008-06-13 12:12:32 -0400638/*
639 * Try to update an existing write request, or create one if there is none.
640 *
641 * Note: Should always be called with the Page Lock held to prevent races
642 * if we have to add a new request. Also assumes that the caller has
643 * already called nfs_flush_incompatible() if necessary.
644 */
645static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
646 struct page *page, unsigned int offset, unsigned int bytes)
647{
648 struct inode *inode = page->mapping->host;
649 struct nfs_page *req;
650 int error;
651
652 req = nfs_try_to_update_request(inode, page, offset, bytes);
653 if (req != NULL)
654 goto out;
655 req = nfs_create_request(ctx, inode, page, offset, bytes);
656 if (IS_ERR(req))
657 goto out;
658 error = nfs_inode_add_request(inode, req);
659 if (error != 0) {
660 nfs_release_request(req);
661 req = ERR_PTR(error);
662 }
Trond Myklebustefc91ed2008-06-10 18:31:00 -0400663out:
Trond Myklebust61e930a2007-10-18 17:08:05 -0400664 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Trond Myklebuste7d39062008-06-13 12:12:32 -0400667static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
668 unsigned int offset, unsigned int count)
669{
670 struct nfs_page *req;
671
672 req = nfs_setup_write_request(ctx, page, offset, count);
673 if (IS_ERR(req))
674 return PTR_ERR(req);
Trond Myklebustb80c3cb2010-04-09 19:07:07 -0400675 nfs_mark_request_dirty(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400676 /* Update file length */
677 nfs_grow_file(page, offset, count);
678 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400679 nfs_mark_request_dirty(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400680 nfs_clear_page_tag_locked(req);
681 return 0;
682}
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684int nfs_flush_incompatible(struct file *file, struct page *page)
685{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400686 struct nfs_open_context *ctx = nfs_file_open_context(file);
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;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400701 do_flush = req->wb_page != page || req->wb_context != ctx ||
702 req->wb_lock_context->lockowner != current->files ||
703 req->wb_lock_context->pid != current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500705 if (!do_flush)
706 return 0;
707 status = nfs_wb_page(page->mapping->host, page);
708 } while (status == 0);
709 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712/*
Trond Myklebust5d47a352008-02-07 17:24:07 -0500713 * If the page cache is marked as unsafe or invalid, then we can't rely on
714 * the PageUptodate() flag. In this case, we will need to turn off
715 * write optimisations that depend on the page contents being correct.
716 */
717static int nfs_write_pageuptodate(struct page *page, struct inode *inode)
718{
719 return PageUptodate(page) &&
720 !(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA));
721}
722
723/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * Update and possibly write a cached page of an NFS file.
725 *
726 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
727 * things with a page scheduled for an RPC call (e.g. invalidate it).
728 */
729int nfs_updatepage(struct file *file, struct page *page,
730 unsigned int offset, unsigned int count)
731{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400732 struct nfs_open_context *ctx = nfs_file_open_context(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 int status = 0;
735
Chuck Lever91d5b472006-03-20 13:44:14 -0500736 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
737
Chuck Lever48186c72008-06-11 17:56:05 -0400738 dprintk("NFS: nfs_updatepage(%s/%s %d@%lld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800739 file->f_path.dentry->d_parent->d_name.name,
740 file->f_path.dentry->d_name.name, count,
Chuck Lever48186c72008-06-11 17:56:05 -0400741 (long long)(page_offset(page) + offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* If we're not using byte range locks, and we know the page
Trond Myklebust5d47a352008-02-07 17:24:07 -0500744 * is up to date, it may be more efficient to extend the write
745 * to cover the entire page in order to avoid fragmentation
746 * inefficiencies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
Trond Myklebust5d47a352008-02-07 17:24:07 -0500748 if (nfs_write_pageuptodate(page, inode) &&
749 inode->i_flock == NULL &&
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100750 !(file->f_flags & O_DSYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500751 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
Trond Myklebuste21195a2006-12-05 00:35:39 -0500755 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebust03fa9e82008-06-05 16:02:35 -0400756 if (status < 0)
757 nfs_set_pageerror(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Chuck Lever48186c72008-06-11 17:56:05 -0400759 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 status, (long long)i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return status;
762}
763
764static void nfs_writepage_release(struct nfs_page *req)
765{
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400766 struct page *page = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400768 if (PageError(req->wb_page) || !nfs_reschedule_unstable_write(req))
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400769 nfs_inode_remove_request(req);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400770 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400771 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Trond Myklebust3ff75762007-07-14 15:40:00 -0400774static int flush_task_priority(int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
777 case FLUSH_HIGHPRI:
778 return RPC_PRIORITY_HIGH;
779 case FLUSH_LOWPRI:
780 return RPC_PRIORITY_LOW;
781 }
782 return RPC_PRIORITY_NORMAL;
783}
784
Andy Adamsond138d5d2011-03-03 15:13:41 +0000785static int nfs_initiate_write(struct nfs_write_data *data,
786 struct rpc_clnt *clnt,
787 const struct rpc_call_ops *call_ops,
788 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Andy Adamsond138d5d2011-03-03 15:13:41 +0000790 struct inode *inode = data->inode;
Trond Myklebust3ff75762007-07-14 15:40:00 -0400791 int priority = flush_task_priority(how);
Trond Myklebust07737692007-10-25 18:42:54 -0400792 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400793 struct rpc_message msg = {
794 .rpc_argp = &data->args,
795 .rpc_resp = &data->res,
Andy Adamsond138d5d2011-03-03 15:13:41 +0000796 .rpc_cred = data->cred,
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400797 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400798 struct rpc_task_setup task_setup_data = {
Andy Adamsond138d5d2011-03-03 15:13:41 +0000799 .rpc_client = clnt,
Trond Myklebust07737692007-10-25 18:42:54 -0400800 .task = &data->task,
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400801 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400802 .callback_ops = call_ops,
803 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500804 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -0400805 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -0400806 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -0400807 };
Trond Myklebust2c61be02010-04-09 19:54:50 -0400808 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Andy Adamsond138d5d2011-03-03 15:13:41 +0000810 /* Set up the initial task struct. */
811 NFS_PROTO(inode)->write_setup(data, &msg);
812
813 dprintk("NFS: %5u initiated write call "
814 "(req %s/%lld, %u bytes @ offset %llu)\n",
815 data->task.tk_pid,
816 inode->i_sb->s_id,
817 (long long)NFS_FILEID(inode),
818 data->args.count,
819 (unsigned long long)data->args.offset);
820
821 task = rpc_run_task(&task_setup_data);
822 if (IS_ERR(task)) {
823 ret = PTR_ERR(task);
824 goto out;
825 }
826 if (how & FLUSH_SYNC) {
827 ret = rpc_wait_for_completion_task(task);
828 if (ret == 0)
829 ret = task->tk_status;
830 }
831 rpc_put_task(task);
832out:
833 return ret;
834}
835
836/*
837 * Set up the argument/result storage required for the RPC call.
838 */
839static int nfs_write_rpcsetup(struct nfs_page *req,
840 struct nfs_write_data *data,
841 const struct rpc_call_ops *call_ops,
842 unsigned int count, unsigned int offset,
843 int how)
844{
845 struct inode *inode = req->wb_context->path.dentry->d_inode;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 /* Set up the RPC argument and reply structs
848 * NB: take care not to mess about with data->commit et al. */
849
850 data->req = req;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400851 data->inode = inode = req->wb_context->path.dentry->d_inode;
Andy Adamsond138d5d2011-03-03 15:13:41 +0000852 data->cred = req->wb_context->cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 data->args.fh = NFS_FH(inode);
855 data->args.offset = req_offset(req) + offset;
856 data->args.pgbase = req->wb_pgbase + offset;
857 data->args.pages = data->pagevec;
858 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500859 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400860 data->args.lock_context = req->wb_lock_context;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400861 data->args.stable = NFS_UNSTABLE;
862 if (how & FLUSH_STABLE) {
863 data->args.stable = NFS_DATA_SYNC;
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400864 if (!nfs_need_commit(NFS_I(inode)))
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400865 data->args.stable = NFS_FILE_SYNC;
866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 data->res.fattr = &data->fattr;
869 data->res.count = count;
870 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400871 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Andy Adamsond138d5d2011-03-03 15:13:41 +0000873 return nfs_initiate_write(data, NFS_CLIENT(inode), call_ops, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Fred6d884e82008-03-19 11:24:38 -0400876/* If a nfs_flush_* function fails, it should remove reqs from @head and
877 * call this on each, which will prepare them to be retried on next
878 * writeback using standard nfs.
879 */
880static void nfs_redirty_request(struct nfs_page *req)
881{
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400882 struct page *page = req->wb_page;
883
Fred6d884e82008-03-19 11:24:38 -0400884 nfs_mark_request_dirty(req);
Fred6d884e82008-03-19 11:24:38 -0400885 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400886 nfs_end_page_writeback(page);
Fred6d884e82008-03-19 11:24:38 -0400887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/*
890 * Generate multiple small requests to write out a single
891 * contiguous dirty area on one page.
892 */
Fred Isamanbae724e2011-03-01 01:34:15 +0000893static int nfs_flush_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how, struct pnfs_layout_segment *lseg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 struct nfs_page *req = nfs_list_entry(head->next);
896 struct page *page = req->wb_page;
897 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700898 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
899 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int requests = 0;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400901 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 LIST_HEAD(list);
903
904 nfs_list_remove_request(req);
905
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400906 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700907 do {
908 size_t len = min(nbytes, wsize);
909
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400910 data = nfs_writedata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!data)
912 goto out_bad;
913 list_add(&data->pages, &list);
914 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700915 nbytes -= len;
916 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 atomic_set(&req->wb_complete, requests);
918
919 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400921 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 do {
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400923 int ret2;
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 data = list_entry(list.next, struct nfs_write_data, pages);
926 list_del_init(&data->pages);
927
928 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400930 if (nbytes < wsize)
931 wsize = nbytes;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400932 ret2 = nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400933 wsize, offset, how);
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400934 if (ret == 0)
935 ret = ret2;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400936 offset += wsize;
937 nbytes -= wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 } while (nbytes != 0);
939
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400940 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942out_bad:
943 while (!list_empty(&list)) {
944 data = list_entry(list.next, struct nfs_write_data, pages);
945 list_del(&data->pages);
Fred Isaman0da2a4ac2011-01-19 14:18:50 -0500946 nfs_writedata_free(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500948 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return -ENOMEM;
950}
951
952/*
953 * Create an RPC task for the given write request and kick it.
954 * The page must have been locked by the caller.
955 *
956 * It may happen that the page we're passed is not marked dirty.
957 * This is the case if nfs_updatepage detects a conflicting request
958 * that has been written but not committed.
959 */
Fred Isamanbae724e2011-03-01 01:34:15 +0000960static int nfs_flush_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int how, struct pnfs_layout_segment *lseg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
962 struct nfs_page *req;
963 struct page **pages;
964 struct nfs_write_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400966 data = nfs_writedata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (!data)
968 goto out_bad;
969
970 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 while (!list_empty(head)) {
972 req = nfs_list_entry(head->next);
973 nfs_list_remove_request(req);
974 nfs_list_add_request(req, &data->pages);
975 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978 req = nfs_list_entry(data->pages.next);
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /* Set up the argument struct */
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400981 return nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 out_bad:
983 while (!list_empty(head)) {
Trond Myklebust10afec92007-05-14 17:16:04 -0400984 req = nfs_list_entry(head->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500986 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988 return -ENOMEM;
989}
990
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400991static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
992 struct inode *inode, int ioflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Chuck Leverbf4285e2007-12-20 14:54:57 -0500994 size_t wsize = NFS_SERVER(inode)->wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Fred Isaman94ad1c82011-03-01 01:34:14 +0000996 pgio->pg_test = NULL;
997
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400998 if (wsize < PAGE_CACHE_SIZE)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400999 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -04001000 else
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001001 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
1003
1004/*
1005 * Handle a write reply that flushed part of a page.
1006 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001007static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001009 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Chuck Lever48186c72008-06-11 17:56:05 -04001011 dprintk("NFS: %5u write(%s/%lld %d@%lld)",
1012 task->tk_pid,
1013 data->req->wb_context->path.dentry->d_inode->i_sb->s_id,
1014 (long long)
1015 NFS_FILEID(data->req->wb_context->path.dentry->d_inode),
1016 data->req->wb_bytes, (long long)req_offset(data->req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001018 nfs_writeback_done(task, data);
1019}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001020
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001021static void nfs_writeback_release_partial(void *calldata)
1022{
1023 struct nfs_write_data *data = calldata;
1024 struct nfs_page *req = data->req;
1025 struct page *page = req->wb_page;
1026 int status = data->task.tk_status;
1027
1028 if (status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001029 nfs_set_pageerror(page);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001030 nfs_context_set_write_error(req->wb_context, status);
1031 dprintk(", error = %d\n", status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
1034
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001035 if (nfs_write_need_commit(data)) {
Trond Myklebust587142f2007-07-02 09:57:54 -04001036 struct inode *inode = page->mapping->host;
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001037
Trond Myklebust587142f2007-07-02 09:57:54 -04001038 spin_lock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001039 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
1040 /* Do nothing we need to resend the writes */
1041 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
1042 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1043 dprintk(" defer commit\n");
1044 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
1045 set_bit(PG_NEED_RESCHED, &req->wb_flags);
1046 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
1047 dprintk(" server reboot detected\n");
1048 }
Trond Myklebust587142f2007-07-02 09:57:54 -04001049 spin_unlock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001050 } else
1051 dprintk(" OK\n");
1052
1053out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (atomic_dec_and_test(&req->wb_complete))
1055 nfs_writepage_release(req);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001056 nfs_writedata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Andy Adamsondef6ed72009-04-01 09:22:26 -04001059#if defined(CONFIG_NFS_V4_1)
1060void nfs_write_prepare(struct rpc_task *task, void *calldata)
1061{
1062 struct nfs_write_data *data = calldata;
Andy Adamsondef6ed72009-04-01 09:22:26 -04001063
Trond Myklebust035168a2010-06-16 09:52:26 -04001064 if (nfs4_setup_sequence(NFS_SERVER(data->inode),
1065 &data->args.seq_args,
Andy Adamsondef6ed72009-04-01 09:22:26 -04001066 &data->res.seq_res, 1, task))
1067 return;
1068 rpc_call_start(task);
1069}
1070#endif /* CONFIG_NFS_V4_1 */
1071
Trond Myklebust788e7a82006-03-20 13:44:27 -05001072static const struct rpc_call_ops nfs_write_partial_ops = {
Andy Adamsondef6ed72009-04-01 09:22:26 -04001073#if defined(CONFIG_NFS_V4_1)
1074 .rpc_call_prepare = nfs_write_prepare,
1075#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001076 .rpc_call_done = nfs_writeback_done_partial,
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001077 .rpc_release = nfs_writeback_release_partial,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001078};
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/*
1081 * Handle a write reply that flushes a whole page.
1082 *
1083 * FIXME: There is an inherent race with invalidate_inode_pages and
1084 * writebacks since the page->count is kept > 1 for as long
1085 * as the page has a write request pending.
1086 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001087static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001089 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001091 nfs_writeback_done(task, data);
1092}
1093
1094static void nfs_writeback_release_full(void *calldata)
1095{
1096 struct nfs_write_data *data = calldata;
1097 int status = data->task.tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /* Update attributes as result of writeback. */
1100 while (!list_empty(&data->pages)) {
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001101 struct nfs_page *req = nfs_list_entry(data->pages.next);
1102 struct page *page = req->wb_page;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Chuck Lever48186c72008-06-11 17:56:05 -04001106 dprintk("NFS: %5u write (%s/%lld %d@%lld)",
1107 data->task.tk_pid,
Trond Myklebust88be9f92007-06-05 10:42:27 -04001108 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1109 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 req->wb_bytes,
1111 (long long)req_offset(req));
1112
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001113 if (status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001114 nfs_set_pageerror(page);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001115 nfs_context_set_write_error(req->wb_context, status);
1116 dprintk(", error = %d\n", status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001117 goto remove_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001120 if (nfs_write_need_commit(data)) {
1121 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1122 nfs_mark_request_commit(req);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001123 dprintk(" marked for commit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 goto next;
1125 }
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001126 dprintk(" OK\n");
1127remove_request:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 nfs_inode_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001130 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -04001131 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001133 nfs_writedata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
1135
Trond Myklebust788e7a82006-03-20 13:44:27 -05001136static const struct rpc_call_ops nfs_write_full_ops = {
Andy Adamsondef6ed72009-04-01 09:22:26 -04001137#if defined(CONFIG_NFS_V4_1)
1138 .rpc_call_prepare = nfs_write_prepare,
1139#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001140 .rpc_call_done = nfs_writeback_done_full,
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001141 .rpc_release = nfs_writeback_release_full,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001142};
1143
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145/*
1146 * This function is called when the WRITE call is complete.
1147 */
Fred Isaman13602892011-02-11 15:42:38 +00001148void nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 struct nfs_writeargs *argp = &data->args;
1151 struct nfs_writeres *resp = &data->res;
Andy Adamsoneedc0202009-04-01 09:22:41 -04001152 struct nfs_server *server = NFS_SERVER(data->inode);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001153 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Chuck Levera3f565b2007-01-31 12:14:01 -05001155 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 task->tk_pid, task->tk_status);
1157
Chuck Leverf551e442006-09-20 14:33:04 -04001158 /*
1159 * ->write_done will attempt to use post-op attributes to detect
1160 * conflicting writes by other clients. A strict interpretation
1161 * of close-to-open would allow us to continue caching even if
1162 * another writer had changed the file, but some applications
1163 * depend on tighter cache coherency when writing.
1164 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001165 status = NFS_PROTO(data->inode)->write_done(task, data);
1166 if (status != 0)
Fred Isaman13602892011-02-11 15:42:38 +00001167 return;
Chuck Lever91d5b472006-03-20 13:44:14 -05001168 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1171 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1172 /* We tried a write call, but the server did not
1173 * commit data to stable storage even though we
1174 * requested it.
1175 * Note: There is a known bug in Tru64 < 5.0 in which
1176 * the server reports NFS_DATA_SYNC, but performs
1177 * NFS_FILE_SYNC. We therefore implement this checking
1178 * as a dprintk() in order to avoid filling syslog.
1179 */
1180 static unsigned long complain;
1181
1182 if (time_before(complain, jiffies)) {
Chuck Lever48186c72008-06-11 17:56:05 -04001183 dprintk("NFS: faulty NFS server %s:"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 " (committed = %d) != (stable = %d)\n",
Andy Adamsoneedc0202009-04-01 09:22:41 -04001185 server->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 resp->verf->committed, argp->stable);
1187 complain = jiffies + 300 * HZ;
1188 }
1189 }
1190#endif
1191 /* Is this a short write? */
1192 if (task->tk_status >= 0 && resp->count < argp->count) {
1193 static unsigned long complain;
1194
Chuck Lever91d5b472006-03-20 13:44:14 -05001195 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /* Has the server at least made some progress? */
1198 if (resp->count != 0) {
1199 /* Was this an NFSv2 write or an NFSv3 stable write? */
1200 if (resp->verf->committed != NFS_UNSTABLE) {
1201 /* Resend from where the server left off */
1202 argp->offset += resp->count;
1203 argp->pgbase += resp->count;
1204 argp->count -= resp->count;
1205 } else {
1206 /* Resend as a stable write in order to avoid
1207 * headaches in the case of a server crash.
1208 */
1209 argp->stable = NFS_FILE_SYNC;
1210 }
Trond Myklebust0110ee12009-12-07 09:00:24 -05001211 nfs_restart_rpc(task, server->nfs_client);
Fred Isaman13602892011-02-11 15:42:38 +00001212 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214 if (time_before(complain, jiffies)) {
1215 printk(KERN_WARNING
1216 "NFS: Server wrote zero bytes, expected %u.\n",
1217 argp->count);
1218 complain = jiffies + 300 * HZ;
1219 }
1220 /* Can't do anything about it except throw an error. */
1221 task->tk_status = -EIO;
1222 }
Fred Isaman13602892011-02-11 15:42:38 +00001223 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
1226
1227#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust71d0a612010-04-22 15:35:57 -04001228static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
1229{
1230 if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
1231 return 1;
1232 if (may_wait && !out_of_line_wait_on_bit_lock(&nfsi->flags,
1233 NFS_INO_COMMIT, nfs_wait_bit_killable,
1234 TASK_KILLABLE))
1235 return 1;
1236 return 0;
1237}
1238
1239static void nfs_commit_clear_lock(struct nfs_inode *nfsi)
1240{
1241 clear_bit(NFS_INO_COMMIT, &nfsi->flags);
1242 smp_mb__after_clear_bit();
1243 wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
1244}
1245
1246
H Hartley Sweeten0aa05882010-01-26 15:42:03 -05001247static void nfs_commitdata_release(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Trond Myklebust383ba712008-02-19 20:04:20 -05001249 struct nfs_write_data *wdata = data;
1250
1251 put_nfs_open_context(wdata->args.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 nfs_commit_free(wdata);
1253}
1254
1255/*
1256 * Set up the argument/result storage required for the RPC call.
1257 */
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001258static int nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001259 struct nfs_write_data *data,
1260 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Trond Myklebust84115e12007-07-14 15:39:59 -04001262 struct nfs_page *first = nfs_list_entry(head->next);
1263 struct inode *inode = first->wb_context->path.dentry->d_inode;
Trond Myklebust3ff75762007-07-14 15:40:00 -04001264 int priority = flush_task_priority(how);
Trond Myklebust07737692007-10-25 18:42:54 -04001265 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001266 struct rpc_message msg = {
1267 .rpc_argp = &data->args,
1268 .rpc_resp = &data->res,
1269 .rpc_cred = first->wb_context->cred,
1270 };
Trond Myklebust84115e12007-07-14 15:39:59 -04001271 struct rpc_task_setup task_setup_data = {
Trond Myklebust07737692007-10-25 18:42:54 -04001272 .task = &data->task,
Trond Myklebust84115e12007-07-14 15:39:59 -04001273 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001274 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -04001275 .callback_ops = &nfs_commit_ops,
1276 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001277 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -04001278 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -04001279 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -04001280 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* Set up the RPC argument and reply structs
1283 * NB: take care not to mess about with data->commit et al. */
1284
1285 list_splice_init(head, &data->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001288 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001291 /* Note: we always request a commit of the entire inode */
1292 data->args.offset = 0;
1293 data->args.count = 0;
Trond Myklebust383ba712008-02-19 20:04:20 -05001294 data->args.context = get_nfs_open_context(first->wb_context);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001295 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 data->res.fattr = &data->fattr;
1297 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001298 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001299
1300 /* Set up the initial task struct. */
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001301 NFS_PROTO(inode)->commit_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Chuck Levera3f565b2007-01-31 12:14:01 -05001303 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001304
Trond Myklebust07737692007-10-25 18:42:54 -04001305 task = rpc_run_task(&task_setup_data);
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001306 if (IS_ERR(task))
1307 return PTR_ERR(task);
Jeff Laytond2224e72011-03-06 17:14:13 +00001308 if (how & FLUSH_SYNC)
1309 rpc_wait_for_completion_task(task);
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001310 rpc_put_task(task);
1311 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
1314/*
1315 * Commit dirty pages
1316 */
1317static int
Chuck Lever40859d72005-11-30 18:09:02 -05001318nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 struct nfs_write_data *data;
1321 struct nfs_page *req;
1322
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001323 data = nfs_commitdata_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 if (!data)
1326 goto out_bad;
1327
1328 /* Set up the argument struct */
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001329 return nfs_commit_rpcsetup(head, data, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 out_bad:
1331 while (!list_empty(head)) {
1332 req = nfs_list_entry(head->next);
1333 nfs_list_remove_request(req);
1334 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001335 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -07001336 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1337 BDI_RECLAIMABLE);
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001338 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
Trond Myklebust71d0a612010-04-22 15:35:57 -04001340 nfs_commit_clear_lock(NFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return -ENOMEM;
1342}
1343
1344/*
1345 * COMMIT call returned
1346 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001347static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001349 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Chuck Levera3f565b2007-01-31 12:14:01 -05001351 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 task->tk_pid, task->tk_status);
1353
Trond Myklebust788e7a82006-03-20 13:44:27 -05001354 /* Call the NFS version-specific code */
1355 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1356 return;
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001357}
1358
1359static void nfs_commit_release(void *calldata)
1360{
1361 struct nfs_write_data *data = calldata;
1362 struct nfs_page *req;
1363 int status = data->task.tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 while (!list_empty(&data->pages)) {
1366 req = nfs_list_entry(data->pages.next);
1367 nfs_list_remove_request(req);
Trond Myklebuste468bae2008-06-13 13:25:22 -04001368 nfs_clear_request_commit(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Chuck Lever48186c72008-06-11 17:56:05 -04001370 dprintk("NFS: commit (%s/%lld %d@%lld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001371 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1372 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 req->wb_bytes,
1374 (long long)req_offset(req));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001375 if (status < 0) {
1376 nfs_context_set_write_error(req->wb_context, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 nfs_inode_remove_request(req);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001378 dprintk(", error = %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 goto next;
1380 }
1381
1382 /* Okay, COMMIT succeeded, apparently. Check the verifier
1383 * returned by the server against all stored verfs. */
1384 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1385 /* We have a match */
1386 nfs_inode_remove_request(req);
1387 dprintk(" OK\n");
1388 goto next;
1389 }
1390 /* We have a mismatch. Write the page again */
1391 dprintk(" mismatch\n");
Fred6d884e82008-03-19 11:24:38 -04001392 nfs_mark_request_dirty(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001394 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
Trond Myklebust71d0a612010-04-22 15:35:57 -04001396 nfs_commit_clear_lock(NFS_I(data->inode));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001397 nfs_commitdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001399
1400static const struct rpc_call_ops nfs_commit_ops = {
Andy Adamson21d9a852009-04-01 09:22:27 -04001401#if defined(CONFIG_NFS_V4_1)
1402 .rpc_call_prepare = nfs_write_prepare,
1403#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001404 .rpc_call_done = nfs_commit_done,
1405 .rpc_release = nfs_commit_release,
1406};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Trond Myklebustb608b282010-07-30 15:31:54 -04001408int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 LIST_HEAD(head);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001411 int may_wait = how & FLUSH_SYNC;
1412 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Trond Myklebust71d0a612010-04-22 15:35:57 -04001414 if (!nfs_commit_set_lock(NFS_I(inode), may_wait))
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001415 goto out_mark_dirty;
Trond Myklebust587142f2007-07-02 09:57:54 -04001416 spin_lock(&inode->i_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001417 res = nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebust587142f2007-07-02 09:57:54 -04001418 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001420 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001421 if (error < 0)
1422 return error;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001423 if (may_wait)
1424 wait_on_bit(&NFS_I(inode)->flags, NFS_INO_COMMIT,
1425 nfs_wait_bit_killable,
1426 TASK_KILLABLE);
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001427 else
1428 goto out_mark_dirty;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001429 } else
1430 nfs_commit_clear_lock(NFS_I(inode));
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001431 return res;
1432 /* Note: If we exit without ensuring that the commit is complete,
1433 * we must mark the inode as dirty. Otherwise, future calls to
1434 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1435 * that the data is on the disk.
1436 */
1437out_mark_dirty:
1438 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return res;
1440}
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001441
1442static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1443{
Trond Myklebust420e3642010-02-19 17:00:02 -08001444 struct nfs_inode *nfsi = NFS_I(inode);
1445 int flags = FLUSH_SYNC;
1446 int ret = 0;
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001447
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001448 if (wbc->sync_mode == WB_SYNC_NONE) {
1449 /* Don't commit yet if this is a non-blocking flush and there
1450 * are a lot of outstanding writes for this mapping.
1451 */
1452 if (nfsi->ncommit <= (nfsi->npages >> 1))
1453 goto out_mark_dirty;
Trond Myklebust420e3642010-02-19 17:00:02 -08001454
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001455 /* don't wait for the COMMIT response */
Trond Myklebust420e3642010-02-19 17:00:02 -08001456 flags = 0;
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001457 }
1458
Trond Myklebust420e3642010-02-19 17:00:02 -08001459 ret = nfs_commit_inode(inode, flags);
1460 if (ret >= 0) {
1461 if (wbc->sync_mode == WB_SYNC_NONE) {
1462 if (ret < wbc->nr_to_write)
1463 wbc->nr_to_write -= ret;
1464 else
1465 wbc->nr_to_write = 0;
1466 }
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001467 return 0;
Trond Myklebust420e3642010-02-19 17:00:02 -08001468 }
1469out_mark_dirty:
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001470 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1471 return ret;
1472}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001473#else
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001474static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1475{
1476 return 0;
1477}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478#endif
1479
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001480int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1481{
1482 return nfs_commit_unstable_pages(inode, wbc);
1483}
1484
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001485/*
1486 * flush the inode to disk.
1487 */
1488int nfs_wb_all(struct inode *inode)
Trond Myklebust34901f72007-07-25 14:09:54 -04001489{
1490 struct writeback_control wbc = {
Trond Myklebust72cb77f2009-03-11 14:10:30 -04001491 .sync_mode = WB_SYNC_ALL,
Trond Myklebust34901f72007-07-25 14:09:54 -04001492 .nr_to_write = LONG_MAX,
Trond Myklebustd7fb1202008-10-06 20:08:56 -04001493 .range_start = 0,
1494 .range_end = LLONG_MAX,
Trond Myklebust34901f72007-07-25 14:09:54 -04001495 };
Trond Myklebust34901f72007-07-25 14:09:54 -04001496
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001497 return sync_inode(inode, &wbc);
Trond Myklebust1c759502006-10-09 16:18:38 -04001498}
1499
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001500int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1501{
1502 struct nfs_page *req;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001503 int ret = 0;
1504
1505 BUG_ON(!PageLocked(page));
1506 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001507 wait_on_page_writeback(page);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001508 req = nfs_page_find_request(page);
1509 if (req == NULL)
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001510 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001511 if (nfs_lock_request_dontget(req)) {
1512 nfs_inode_remove_request(req);
1513 /*
1514 * In case nfs_inode_remove_request has marked the
1515 * page as being dirty
1516 */
1517 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1518 nfs_unlock_request(req);
1519 break;
1520 }
1521 ret = nfs_wait_on_request(req);
Trond Myklebustc9edda72010-01-26 15:41:34 -05001522 nfs_release_request(req);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001523 if (ret < 0)
Trond Myklebustc9889502010-02-19 17:03:21 -08001524 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001525 }
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001526 return ret;
1527}
1528
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001529/*
1530 * Write back all requests on one page - we do this before reading it.
1531 */
1532int nfs_wb_page(struct inode *inode, struct page *page)
Trond Myklebust1c759502006-10-09 16:18:38 -04001533{
1534 loff_t range_start = page_offset(page);
1535 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001536 struct writeback_control wbc = {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001537 .sync_mode = WB_SYNC_ALL,
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001538 .nr_to_write = 0,
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001539 .range_start = range_start,
1540 .range_end = range_end,
1541 };
1542 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001543
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001544 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001545 wait_on_page_writeback(page);
Trond Myklebust73e33022008-04-11 16:03:54 -04001546 if (clear_page_dirty_for_io(page)) {
1547 ret = nfs_writepage_locked(page, &wbc);
1548 if (ret < 0)
1549 goto out_error;
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001550 continue;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001551 }
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001552 if (!PagePrivate(page))
1553 break;
1554 ret = nfs_commit_inode(inode, FLUSH_SYNC);
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001555 if (ret < 0)
Trond Myklebust73e33022008-04-11 16:03:54 -04001556 goto out_error;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001557 }
Trond Myklebust73e33022008-04-11 16:03:54 -04001558 return 0;
1559out_error:
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001560 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001561}
1562
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001563#ifdef CONFIG_MIGRATION
1564int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
1565 struct page *page)
1566{
1567 struct nfs_page *req;
1568 int ret;
1569
Trond Myklebust7549ad52010-02-08 09:32:34 -05001570 nfs_fscache_release_page(page, GFP_KERNEL);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001571
Trond Myklebustcfb506e2010-07-30 15:31:57 -04001572 req = nfs_find_and_lock_request(page, false);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001573 ret = PTR_ERR(req);
1574 if (IS_ERR(req))
1575 goto out;
1576
1577 ret = migrate_page(mapping, newpage, page);
1578 if (!req)
1579 goto out;
1580 if (ret)
1581 goto out_unlock;
1582 page_cache_get(newpage);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001583 spin_lock(&mapping->host->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001584 req->wb_page = newpage;
1585 SetPagePrivate(newpage);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001586 set_page_private(newpage, (unsigned long)req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001587 ClearPagePrivate(page);
1588 set_page_private(page, 0);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001589 spin_unlock(&mapping->host->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001590 page_cache_release(page);
1591out_unlock:
1592 nfs_clear_page_tag_locked(req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001593out:
1594 return ret;
1595}
1596#endif
1597
David Howellsf7b422b2006-06-09 09:34:33 -04001598int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1601 sizeof(struct nfs_write_data),
1602 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001603 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (nfs_wdata_cachep == NULL)
1605 return -ENOMEM;
1606
Matthew Dobson93d23412006-03-26 01:37:50 -08001607 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1608 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (nfs_wdata_mempool == NULL)
1610 return -ENOMEM;
1611
Matthew Dobson93d23412006-03-26 01:37:50 -08001612 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1613 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (nfs_commit_mempool == NULL)
1615 return -ENOMEM;
1616
Peter Zijlstra89a09142007-03-16 13:38:26 -08001617 /*
1618 * NFS congestion size, scale with available memory.
1619 *
1620 * 64MB: 8192k
1621 * 128MB: 11585k
1622 * 256MB: 16384k
1623 * 512MB: 23170k
1624 * 1GB: 32768k
1625 * 2GB: 46340k
1626 * 4GB: 65536k
1627 * 8GB: 92681k
1628 * 16GB: 131072k
1629 *
1630 * This allows larger machines to have larger/more transfers.
1631 * Limit the default to 256M
1632 */
1633 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1634 if (nfs_congestion_kb > 256*1024)
1635 nfs_congestion_kb = 256*1024;
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return 0;
1638}
1639
David Brownell266bee82006-06-27 12:59:15 -07001640void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 mempool_destroy(nfs_commit_mempool);
1643 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001644 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646