blob: 4c14c17a5276a410bb383e3650f106ab56cf47d6 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#define NFSDBG_FACILITY NFSDBG_PAGECACHE
33
34#define MIN_POOL_WRITE (32)
35#define MIN_POOL_COMMIT (4)
36
37/*
38 * Local function declarations
39 */
Trond Myklebustc63c7b02007-04-02 19:29:52 -040040static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
41 struct inode *inode, int ioflags);
Fred Isamanf8512ad2008-03-19 11:24:39 -040042static void nfs_redirty_request(struct nfs_page *req);
Trond Myklebust788e7a82006-03-20 13:44:27 -050043static const struct rpc_call_ops nfs_write_partial_ops;
44static const struct rpc_call_ops nfs_write_full_ops;
45static const struct rpc_call_ops nfs_commit_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Christoph Lametere18b8902006-12-06 20:33:20 -080047static struct kmem_cache *nfs_wdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050048static mempool_t *nfs_wdata_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static mempool_t *nfs_commit_mempool;
50
Trond Myklebustc9d8f892008-04-15 16:56:39 -040051struct nfs_write_data *nfs_commitdata_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080053 struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
Chuck Lever40859d72005-11-30 18:09:02 -050054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 if (p) {
56 memset(p, 0, sizeof(*p));
57 INIT_LIST_HEAD(&p->pages);
58 }
59 return p;
60}
61
Trond Myklebust5e4424a2008-02-25 21:53:49 -080062void nfs_commit_free(struct nfs_write_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
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 Myklebust8d5658c2007-04-10 09:26:35 -040069struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050070{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080071 struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050072
73 if (p) {
74 memset(p, 0, sizeof(*p));
75 INIT_LIST_HEAD(&p->pages);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070076 p->npages = pagecount;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040077 if (pagecount <= ARRAY_SIZE(p->page_array))
78 p->pagevec = p->page_array;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050079 else {
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040080 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
81 if (!p->pagevec) {
Trond Myklebust3feb2d42006-03-20 13:44:37 -050082 mempool_free(p, nfs_wdata_mempool);
83 p = NULL;
84 }
85 }
86 }
87 return p;
88}
89
Trond Myklebust1ae88b22009-08-12 09:12:30 -040090void nfs_writedata_free(struct nfs_write_data *p)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050091{
92 if (p && (p->pagevec != &p->page_array[0]))
93 kfree(p->pagevec);
94 mempool_free(p, nfs_wdata_mempool);
95}
96
Trond Myklebust1ae88b22009-08-12 09:12:30 -040097static void nfs_writedata_release(struct nfs_write_data *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Trond Myklebust383ba712008-02-19 20:04:20 -050099 put_nfs_open_context(wdata->args.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 nfs_writedata_free(wdata);
101}
102
Trond Myklebust7b159fc2007-07-25 14:09:54 -0400103static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
104{
105 ctx->error = error;
106 smp_wmb();
107 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
108}
109
Trond Myklebust277459d2006-12-05 00:35:35 -0500110static struct nfs_page *nfs_page_find_request_locked(struct page *page)
111{
112 struct nfs_page *req = NULL;
113
114 if (PagePrivate(page)) {
115 req = (struct nfs_page *)page_private(page);
116 if (req != NULL)
Trond Myklebustc03b4022007-06-17 13:26:38 -0400117 kref_get(&req->wb_kref);
Trond Myklebust277459d2006-12-05 00:35:35 -0500118 }
119 return req;
120}
121
122static struct nfs_page *nfs_page_find_request(struct page *page)
123{
Trond Myklebust587142f2007-07-02 09:57:54 -0400124 struct inode *inode = page->mapping->host;
Trond Myklebust277459d2006-12-05 00:35:35 -0500125 struct nfs_page *req = NULL;
Trond Myklebust277459d2006-12-05 00:35:35 -0500126
Trond Myklebust587142f2007-07-02 09:57:54 -0400127 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500128 req = nfs_page_find_request_locked(page);
Trond Myklebust587142f2007-07-02 09:57:54 -0400129 spin_unlock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500130 return req;
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* Adjust the file length if we're writing beyond the end */
134static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
135{
136 struct inode *inode = page->mapping->host;
Trond Myklebusta3d01452008-06-11 12:21:19 -0400137 loff_t end, i_size;
138 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Trond Myklebusta3d01452008-06-11 12:21:19 -0400140 spin_lock(&inode->i_lock);
141 i_size = i_size_read(inode);
142 end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (i_size > 0 && page->index < end_index)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
146 if (i_size >= end)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 i_size_write(inode, end);
Trond Myklebusta3d01452008-06-11 12:21:19 -0400149 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
150out:
151 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Trond Myklebusta301b772007-02-06 11:07:15 -0800154/* A writeback failed: mark the page as bad, and invalidate the page cache */
155static void nfs_set_pageerror(struct page *page)
156{
157 SetPageError(page);
158 nfs_zap_mapping(page->mapping->host, page->mapping);
159}
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/* We can set the PG_uptodate flag if we see that a write request
162 * covers the full page.
163 */
164static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
165{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (PageUptodate(page))
167 return;
168 if (base != 0)
169 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500170 if (count != nfs_page_length(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500172 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static int wb_priority(struct writeback_control *wbc)
176{
177 if (wbc->for_reclaim)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400178 return FLUSH_HIGHPRI | FLUSH_STABLE;
Wu Fengguangb17621f2009-12-03 13:54:25 +0100179 if (wbc->for_kupdate || wbc->for_background)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return FLUSH_LOWPRI;
181 return 0;
182}
183
184/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800185 * NFS congestion control
186 */
187
188int nfs_congestion_kb;
189
190#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
191#define NFS_CONGESTION_OFF_THRESH \
192 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
193
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400194static int nfs_set_page_writeback(struct page *page)
Peter Zijlstra89a09142007-03-16 13:38:26 -0800195{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400196 int ret = test_set_page_writeback(page);
197
198 if (!ret) {
Peter Zijlstra89a09142007-03-16 13:38:26 -0800199 struct inode *inode = page->mapping->host;
200 struct nfs_server *nfss = NFS_SERVER(inode);
201
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400202 page_cache_get(page);
Peter Zijlstra277866a2007-05-08 00:35:12 -0700203 if (atomic_long_inc_return(&nfss->writeback) >
Jens Axboe8aa7e842009-07-09 14:52:32 +0200204 NFS_CONGESTION_ON_THRESH) {
205 set_bdi_congested(&nfss->backing_dev_info,
206 BLK_RW_ASYNC);
207 }
Peter Zijlstra89a09142007-03-16 13:38:26 -0800208 }
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400209 return ret;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800210}
211
212static void nfs_end_page_writeback(struct page *page)
213{
214 struct inode *inode = page->mapping->host;
215 struct nfs_server *nfss = NFS_SERVER(inode);
216
217 end_page_writeback(page);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400218 page_cache_release(page);
Peter Zijlstrac4dc4be2007-10-16 23:25:41 -0700219 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
Jens Axboe8aa7e842009-07-09 14:52:32 +0200220 clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
Peter Zijlstra89a09142007-03-16 13:38:26 -0800221}
222
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400223static struct nfs_page *nfs_find_and_lock_request(struct page *page, bool nonblock)
Trond Myklebuste261f512006-12-05 00:35:41 -0500224{
Trond Myklebust587142f2007-07-02 09:57:54 -0400225 struct inode *inode = page->mapping->host;
Trond Myklebuste261f512006-12-05 00:35:41 -0500226 struct nfs_page *req;
Trond Myklebuste261f512006-12-05 00:35:41 -0500227 int ret;
228
Trond Myklebust587142f2007-07-02 09:57:54 -0400229 spin_lock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400230 for (;;) {
Trond Myklebuste261f512006-12-05 00:35:41 -0500231 req = nfs_page_find_request_locked(page);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400232 if (req == NULL)
233 break;
Trond Myklebustacee4782008-01-22 17:13:07 -0500234 if (nfs_set_page_tag_locked(req))
Trond Myklebuste261f512006-12-05 00:35:41 -0500235 break;
236 /* Note: If we hold the page lock, as is the case in nfs_writepage,
Trond Myklebustacee4782008-01-22 17:13:07 -0500237 * then the call to nfs_set_page_tag_locked() will always
Trond Myklebuste261f512006-12-05 00:35:41 -0500238 * succeed provided that someone hasn't already marked the
239 * request as dirty (in which case we don't care).
240 */
Trond Myklebust587142f2007-07-02 09:57:54 -0400241 spin_unlock(&inode->i_lock);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400242 if (!nonblock)
243 ret = nfs_wait_on_request(req);
244 else
245 ret = -EAGAIN;
Trond Myklebuste261f512006-12-05 00:35:41 -0500246 nfs_release_request(req);
247 if (ret != 0)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400248 return ERR_PTR(ret);
Trond Myklebust587142f2007-07-02 09:57:54 -0400249 spin_lock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500250 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400251 spin_unlock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400252 return req;
253}
254
255/*
256 * Find an associated nfs write request, and prepare to flush it out
257 * May return an error if the user signalled nfs_wait_on_request().
258 */
259static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400260 struct page *page, bool nonblock)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400261{
262 struct nfs_page *req;
263 int ret = 0;
264
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400265 req = nfs_find_and_lock_request(page, nonblock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400266 if (!req)
267 goto out;
268 ret = PTR_ERR(req);
269 if (IS_ERR(req))
270 goto out;
271
272 ret = nfs_set_page_writeback(page);
273 BUG_ON(ret != 0);
274 BUG_ON(test_bit(PG_CLEAN, &req->wb_flags));
275
Fred Isamanf8512ad2008-03-19 11:24:39 -0400276 if (!nfs_pageio_add_request(pgio, req)) {
277 nfs_redirty_request(req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400278 ret = pgio->pg_error;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400279 }
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400280out:
281 return ret;
Trond Myklebuste261f512006-12-05 00:35:41 -0500282}
283
Trond Myklebustf758c8852007-07-22 19:27:32 -0400284static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
285{
286 struct inode *inode = page->mapping->host;
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400287 int ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400288
289 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
290 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
291
292 nfs_pageio_cond_complete(pgio, page->index);
Wu Fengguang1b430be2010-10-26 14:21:26 -0700293 ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400294 if (ret == -EAGAIN) {
295 redirty_page_for_writepage(wbc, page);
296 ret = 0;
297 }
298 return ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400299}
300
Trond Myklebuste261f512006-12-05 00:35:41 -0500301/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * Write an mmapped page to the server.
303 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500304static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400306 struct nfs_pageio_descriptor pgio;
Trond Myklebuste261f512006-12-05 00:35:41 -0500307 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Trond Myklebustf758c8852007-07-22 19:27:32 -0400309 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc));
310 err = nfs_do_writepage(page, wbc, &pgio);
311 nfs_pageio_complete(&pgio);
312 if (err < 0)
313 return err;
314 if (pgio.pg_error < 0)
315 return pgio.pg_error;
316 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500317}
318
319int nfs_writepage(struct page *page, struct writeback_control *wbc)
320{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400321 int ret;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500322
Trond Myklebustf758c8852007-07-22 19:27:32 -0400323 ret = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unlock_page(page);
Trond Myklebustf758c8852007-07-22 19:27:32 -0400325 return ret;
326}
327
328static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
329{
330 int ret;
331
332 ret = nfs_do_writepage(page, wbc, data);
333 unlock_page(page);
334 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
338{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 struct inode *inode = mapping->host;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400340 unsigned long *bitlock = &NFS_I(inode)->flags;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400341 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 int err;
343
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400344 /* Stop dirtying of new pages while we sync */
345 err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
346 nfs_wait_bit_killable, TASK_KILLABLE);
347 if (err)
348 goto out_err;
349
Chuck Lever91d5b472006-03-20 13:44:14 -0500350 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
351
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400352 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
Trond Myklebustf758c8852007-07-22 19:27:32 -0400353 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400354 nfs_pageio_complete(&pgio);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400355
356 clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
357 smp_mb__after_clear_bit();
358 wake_up_bit(bitlock, NFS_INO_FLUSHING);
359
Trond Myklebustf758c8852007-07-22 19:27:32 -0400360 if (err < 0)
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400361 goto out_err;
362 err = pgio.pg_error;
363 if (err < 0)
364 goto out_err;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400365 return 0;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400366out_err:
367 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370/*
371 * Insert a write request into an inode
372 */
Trond Myklebuste7d39062008-06-13 12:12:32 -0400373static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct nfs_inode *nfsi = NFS_I(inode);
376 int error;
377
Trond Myklebuste7d39062008-06-13 12:12:32 -0400378 error = radix_tree_preload(GFP_NOFS);
379 if (error != 0)
380 goto out;
381
382 /* Lock the request! */
383 nfs_lock_request_dontget(req);
384
385 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
Nick Piggin27852592008-02-04 23:48:37 -0800387 BUG_ON(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!nfsi->npages) {
389 igrab(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (nfs_have_delegation(inode, FMODE_WRITE))
391 nfsi->change_attr++;
392 }
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500393 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500394 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 nfsi->npages++;
Trond Myklebustc03b4022007-06-17 13:26:38 -0400396 kref_get(&req->wb_kref);
Nick Piggin27852592008-02-04 23:48:37 -0800397 radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
398 NFS_PAGE_TAG_LOCKED);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400399 spin_unlock(&inode->i_lock);
400 radix_tree_preload_end();
401out:
402 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800406 * Remove a write request from an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
408static void nfs_inode_remove_request(struct nfs_page *req)
409{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400410 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct nfs_inode *nfsi = NFS_I(inode);
412
413 BUG_ON (!NFS_WBACK_BUSY(req));
414
Trond Myklebust587142f2007-07-02 09:57:54 -0400415 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500416 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500417 ClearPagePrivate(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
419 nfsi->npages--;
420 if (!nfsi->npages) {
Trond Myklebust587142f2007-07-02 09:57:54 -0400421 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 iput(inode);
423 } else
Trond Myklebust587142f2007-07-02 09:57:54 -0400424 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 nfs_clear_request(req);
426 nfs_release_request(req);
427}
428
Trond Myklebust61822ab2006-12-05 00:35:42 -0500429static void
Fred6d884e82008-03-19 11:24:38 -0400430nfs_mark_request_dirty(struct nfs_page *req)
Trond Myklebust61822ab2006-12-05 00:35:42 -0500431{
Trond Myklebust61822ab2006-12-05 00:35:42 -0500432 __set_page_dirty_nobuffers(req->wb_page);
Trond Myklebustb80c3cb2010-04-09 19:07:07 -0400433 __mark_inode_dirty(req->wb_page->mapping->host, I_DIRTY_DATASYNC);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
437/*
438 * Add a request to the inode's commit list.
439 */
440static void
441nfs_mark_request_commit(struct nfs_page *req)
442{
Trond Myklebust88be9f92007-06-05 10:42:27 -0400443 struct inode *inode = req->wb_context->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct nfs_inode *nfsi = NFS_I(inode);
445
Trond Myklebust587142f2007-07-02 09:57:54 -0400446 spin_lock(&inode->i_lock);
Trond Myklebuste468bae2008-06-13 13:25:22 -0400447 set_bit(PG_CLEAN, &(req)->wb_flags);
Trond Myklebust5c369682007-06-17 15:27:42 -0400448 radix_tree_tag_set(&nfsi->nfs_page_tree,
449 req->wb_index,
450 NFS_PAGE_TAG_COMMIT);
Trond Myklebustff778d02010-02-19 16:53:39 -0800451 nfsi->ncommit++;
Trond Myklebust587142f2007-07-02 09:57:54 -0400452 spin_unlock(&inode->i_lock);
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700453 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -0700454 inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
Trond Myklebusta1803042006-12-05 00:45:19 -0500455 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400457
Trond Myklebuste468bae2008-06-13 13:25:22 -0400458static int
459nfs_clear_request_commit(struct nfs_page *req)
460{
461 struct page *page = req->wb_page;
462
463 if (test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) {
464 dec_zone_page_state(page, NR_UNSTABLE_NFS);
465 dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE);
466 return 1;
467 }
468 return 0;
469}
470
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400471static inline
472int nfs_write_need_commit(struct nfs_write_data *data)
473{
474 return data->verf.committed != NFS_FILE_SYNC;
475}
476
477static inline
478int nfs_reschedule_unstable_write(struct nfs_page *req)
479{
Trond Myklebuste468bae2008-06-13 13:25:22 -0400480 if (test_and_clear_bit(PG_NEED_COMMIT, &req->wb_flags)) {
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400481 nfs_mark_request_commit(req);
482 return 1;
483 }
484 if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
Fred6d884e82008-03-19 11:24:38 -0400485 nfs_mark_request_dirty(req);
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400486 return 1;
487 }
488 return 0;
489}
490#else
491static inline void
492nfs_mark_request_commit(struct nfs_page *req)
493{
494}
495
Trond Myklebuste468bae2008-06-13 13:25:22 -0400496static inline int
497nfs_clear_request_commit(struct nfs_page *req)
498{
499 return 0;
500}
501
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400502static inline
503int nfs_write_need_commit(struct nfs_write_data *data)
504{
505 return 0;
506}
507
508static inline
509int nfs_reschedule_unstable_write(struct nfs_page *req)
510{
511 return 0;
512}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513#endif
514
Trond Myklebust47c62562009-03-16 08:13:41 -0400515#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400516static int
517nfs_need_commit(struct nfs_inode *nfsi)
518{
519 return radix_tree_tagged(&nfsi->nfs_page_tree, NFS_PAGE_TAG_COMMIT);
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
523 * nfs_scan_commit - Scan an inode for commit requests
524 * @inode: NFS inode to scan
525 * @dst: destination list
526 * @idx_start: lower bound of page->index to scan.
527 * @npages: idx_start + npages sets the upper bound to scan.
528 *
529 * Moves requests from the inode's 'commit' request list.
530 * The requests are *not* checked to ensure that they form a contiguous set.
531 */
532static int
Trond Myklebustca52fec2007-04-17 17:22:13 -0400533nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebustff778d02010-02-19 16:53:39 -0800536 int ret;
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000537
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400538 if (!nfs_need_commit(nfsi))
539 return 0;
540
Trond Myklebustff778d02010-02-19 16:53:39 -0800541 ret = nfs_scan_list(nfsi, dst, idx_start, npages, NFS_PAGE_TAG_COMMIT);
542 if (ret > 0)
543 nfsi->ncommit -= ret;
Trond Myklebust2928db12010-02-19 17:03:18 -0800544 if (nfs_need_commit(NFS_I(inode)))
545 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Trond Myklebustff778d02010-02-19 16:53:39 -0800546 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500548#else
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400549static inline int nfs_need_commit(struct nfs_inode *nfsi)
550{
551 return 0;
552}
553
Trond Myklebustca52fec2007-04-17 17:22:13 -0400554static 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 -0500555{
556 return 0;
557}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*
Trond Myklebuste7d39062008-06-13 12:12:32 -0400561 * Search for an existing write request, and attempt to update
562 * it to reflect a new dirty region on a given page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *
Trond Myklebuste7d39062008-06-13 12:12:32 -0400564 * If the attempt fails, then the existing request is flushed out
565 * to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Trond Myklebuste7d39062008-06-13 12:12:32 -0400567static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
568 struct page *page,
569 unsigned int offset,
570 unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Trond Myklebuste7d39062008-06-13 12:12:32 -0400572 struct nfs_page *req;
573 unsigned int rqend;
574 unsigned int end;
575 int error;
576
577 if (!PagePrivate(page))
578 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 end = offset + bytes;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400581 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 for (;;) {
Trond Myklebust277459d2006-12-05 00:35:35 -0500584 req = nfs_page_find_request_locked(page);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400585 if (req == NULL)
586 goto out_unlock;
Trond Myklebust277459d2006-12-05 00:35:35 -0500587
Trond Myklebuste7d39062008-06-13 12:12:32 -0400588 rqend = req->wb_offset + req->wb_bytes;
589 /*
590 * Tell the caller to flush out the request if
591 * the offsets are non-contiguous.
592 * Note: nfs_flush_incompatible() will already
593 * have flushed out requests having wrong owners.
594 */
Trond Myklebuste468bae2008-06-13 13:25:22 -0400595 if (offset > rqend
Trond Myklebuste7d39062008-06-13 12:12:32 -0400596 || end < req->wb_offset)
597 goto out_flushme;
598
599 if (nfs_set_page_tag_locked(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Trond Myklebuste7d39062008-06-13 12:12:32 -0400602 /* The request is locked, so wait and then retry */
Trond Myklebust587142f2007-07-02 09:57:54 -0400603 spin_unlock(&inode->i_lock);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400604 error = nfs_wait_on_request(req);
605 nfs_release_request(req);
606 if (error != 0)
607 goto out_err;
608 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Trond Myklebustff778d02010-02-19 16:53:39 -0800611 if (nfs_clear_request_commit(req) &&
612 radix_tree_tag_clear(&NFS_I(inode)->nfs_page_tree,
613 req->wb_index, NFS_PAGE_TAG_COMMIT) != NULL)
614 NFS_I(inode)->ncommit--;
Trond Myklebuste468bae2008-06-13 13:25:22 -0400615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /* Okay, the request matches. Update the region */
617 if (offset < req->wb_offset) {
618 req->wb_offset = offset;
619 req->wb_pgbase = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (end > rqend)
622 req->wb_bytes = end - req->wb_offset;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400623 else
624 req->wb_bytes = rqend - req->wb_offset;
625out_unlock:
626 spin_unlock(&inode->i_lock);
627 return req;
628out_flushme:
629 spin_unlock(&inode->i_lock);
630 nfs_release_request(req);
631 error = nfs_wb_page(inode, page);
632out_err:
633 return ERR_PTR(error);
634}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Trond Myklebuste7d39062008-06-13 12:12:32 -0400636/*
637 * Try to update an existing write request, or create one if there is none.
638 *
639 * Note: Should always be called with the Page Lock held to prevent races
640 * if we have to add a new request. Also assumes that the caller has
641 * already called nfs_flush_incompatible() if necessary.
642 */
643static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
644 struct page *page, unsigned int offset, unsigned int bytes)
645{
646 struct inode *inode = page->mapping->host;
647 struct nfs_page *req;
648 int error;
649
650 req = nfs_try_to_update_request(inode, page, offset, bytes);
651 if (req != NULL)
652 goto out;
653 req = nfs_create_request(ctx, inode, page, offset, bytes);
654 if (IS_ERR(req))
655 goto out;
656 error = nfs_inode_add_request(inode, req);
657 if (error != 0) {
658 nfs_release_request(req);
659 req = ERR_PTR(error);
660 }
Trond Myklebustefc91ed2008-06-10 18:31:00 -0400661out:
Trond Myklebust61e930a2007-10-18 17:08:05 -0400662 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Trond Myklebuste7d39062008-06-13 12:12:32 -0400665static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
666 unsigned int offset, unsigned int count)
667{
668 struct nfs_page *req;
669
670 req = nfs_setup_write_request(ctx, page, offset, count);
671 if (IS_ERR(req))
672 return PTR_ERR(req);
Trond Myklebustb80c3cb2010-04-09 19:07:07 -0400673 nfs_mark_request_dirty(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400674 /* Update file length */
675 nfs_grow_file(page, offset, count);
676 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400677 nfs_mark_request_dirty(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400678 nfs_clear_page_tag_locked(req);
679 return 0;
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682int nfs_flush_incompatible(struct file *file, struct page *page)
683{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400684 struct nfs_open_context *ctx = nfs_file_open_context(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500686 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /*
688 * Look for a request corresponding to this page. If there
689 * is one, and it belongs to another file, we flush it out
690 * before we try to copy anything into the page. Do this
691 * due to the lack of an ACCESS-type call in NFSv2.
692 * Also do the same if we find a request from an existing
693 * dropped page.
694 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500695 do {
696 req = nfs_page_find_request(page);
697 if (req == NULL)
698 return 0;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400699 do_flush = req->wb_page != page || req->wb_context != ctx ||
700 req->wb_lock_context->lockowner != current->files ||
701 req->wb_lock_context->pid != current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500703 if (!do_flush)
704 return 0;
705 status = nfs_wb_page(page->mapping->host, page);
706 } while (status == 0);
707 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710/*
Trond Myklebust5d47a352008-02-07 17:24:07 -0500711 * If the page cache is marked as unsafe or invalid, then we can't rely on
712 * the PageUptodate() flag. In this case, we will need to turn off
713 * write optimisations that depend on the page contents being correct.
714 */
715static int nfs_write_pageuptodate(struct page *page, struct inode *inode)
716{
717 return PageUptodate(page) &&
718 !(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA));
719}
720
721/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 * Update and possibly write a cached page of an NFS file.
723 *
724 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
725 * things with a page scheduled for an RPC call (e.g. invalidate it).
726 */
727int nfs_updatepage(struct file *file, struct page *page,
728 unsigned int offset, unsigned int count)
729{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400730 struct nfs_open_context *ctx = nfs_file_open_context(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int status = 0;
733
Chuck Lever91d5b472006-03-20 13:44:14 -0500734 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
735
Chuck Lever48186c72008-06-11 17:56:05 -0400736 dprintk("NFS: nfs_updatepage(%s/%s %d@%lld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800737 file->f_path.dentry->d_parent->d_name.name,
738 file->f_path.dentry->d_name.name, count,
Chuck Lever48186c72008-06-11 17:56:05 -0400739 (long long)(page_offset(page) + offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /* If we're not using byte range locks, and we know the page
Trond Myklebust5d47a352008-02-07 17:24:07 -0500742 * is up to date, it may be more efficient to extend the write
743 * to cover the entire page in order to avoid fragmentation
744 * inefficiencies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
Trond Myklebust5d47a352008-02-07 17:24:07 -0500746 if (nfs_write_pageuptodate(page, inode) &&
747 inode->i_flock == NULL &&
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100748 !(file->f_flags & O_DSYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500749 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752
Trond Myklebuste21195a2006-12-05 00:35:39 -0500753 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebust03fa9e82008-06-05 16:02:35 -0400754 if (status < 0)
755 nfs_set_pageerror(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Chuck Lever48186c72008-06-11 17:56:05 -0400757 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 status, (long long)i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return status;
760}
761
762static void nfs_writepage_release(struct nfs_page *req)
763{
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400764 struct page *page = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400766 if (PageError(req->wb_page) || !nfs_reschedule_unstable_write(req))
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400767 nfs_inode_remove_request(req);
Trond Myklebust9fd367f2007-06-17 15:10:24 -0400768 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400769 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Trond Myklebust3ff75762007-07-14 15:40:00 -0400772static int flush_task_priority(int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
775 case FLUSH_HIGHPRI:
776 return RPC_PRIORITY_HIGH;
777 case FLUSH_LOWPRI:
778 return RPC_PRIORITY_LOW;
779 }
780 return RPC_PRIORITY_NORMAL;
781}
782
783/*
784 * Set up the argument/result storage required for the RPC call.
785 */
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400786static int nfs_write_rpcsetup(struct nfs_page *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 struct nfs_write_data *data,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500788 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 unsigned int count, unsigned int offset,
790 int how)
791{
Trond Myklebust84115e12007-07-14 15:39:59 -0400792 struct inode *inode = req->wb_context->path.dentry->d_inode;
Trond Myklebust3ff75762007-07-14 15:40:00 -0400793 int priority = flush_task_priority(how);
Trond Myklebust07737692007-10-25 18:42:54 -0400794 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400795 struct rpc_message msg = {
796 .rpc_argp = &data->args,
797 .rpc_resp = &data->res,
798 .rpc_cred = req->wb_context->cred,
799 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400800 struct rpc_task_setup task_setup_data = {
801 .rpc_client = NFS_CLIENT(inode),
Trond Myklebust07737692007-10-25 18:42:54 -0400802 .task = &data->task,
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400803 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400804 .callback_ops = call_ops,
805 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500806 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -0400807 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -0400808 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -0400809 };
Trond Myklebust2c61be02010-04-09 19:54:50 -0400810 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* Set up the RPC argument and reply structs
813 * NB: take care not to mess about with data->commit et al. */
814
815 data->req = req;
Trond Myklebust88be9f92007-06-05 10:42:27 -0400816 data->inode = inode = req->wb_context->path.dentry->d_inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400817 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 data->args.fh = NFS_FH(inode);
820 data->args.offset = req_offset(req) + offset;
821 data->args.pgbase = req->wb_pgbase + offset;
822 data->args.pages = data->pagevec;
823 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500824 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400825 data->args.lock_context = req->wb_lock_context;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400826 data->args.stable = NFS_UNSTABLE;
827 if (how & FLUSH_STABLE) {
828 data->args.stable = NFS_DATA_SYNC;
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400829 if (!nfs_need_commit(NFS_I(inode)))
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400830 data->args.stable = NFS_FILE_SYNC;
831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 data->res.fattr = &data->fattr;
834 data->res.count = count;
835 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400836 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Trond Myklebust788e7a82006-03-20 13:44:27 -0500838 /* Set up the initial task struct. */
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400839 NFS_PROTO(inode)->write_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Chuck Levera3f565b2007-01-31 12:14:01 -0500841 dprintk("NFS: %5u initiated write call "
Chuck Lever48186c72008-06-11 17:56:05 -0400842 "(req %s/%lld, %u bytes @ offset %llu)\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500843 data->task.tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 inode->i_sb->s_id,
845 (long long)NFS_FILEID(inode),
846 count,
847 (unsigned long long)data->args.offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Trond Myklebust07737692007-10-25 18:42:54 -0400849 task = rpc_run_task(&task_setup_data);
Trond Myklebust2c61be02010-04-09 19:54:50 -0400850 if (IS_ERR(task)) {
851 ret = PTR_ERR(task);
852 goto out;
853 }
854 if (how & FLUSH_SYNC) {
855 ret = rpc_wait_for_completion_task(task);
856 if (ret == 0)
857 ret = task->tk_status;
858 }
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400859 rpc_put_task(task);
Trond Myklebust2c61be02010-04-09 19:54:50 -0400860out:
861 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
Fred6d884e82008-03-19 11:24:38 -0400864/* If a nfs_flush_* function fails, it should remove reqs from @head and
865 * call this on each, which will prepare them to be retried on next
866 * writeback using standard nfs.
867 */
868static void nfs_redirty_request(struct nfs_page *req)
869{
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400870 struct page *page = req->wb_page;
871
Fred6d884e82008-03-19 11:24:38 -0400872 nfs_mark_request_dirty(req);
Fred6d884e82008-03-19 11:24:38 -0400873 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400874 nfs_end_page_writeback(page);
Fred6d884e82008-03-19 11:24:38 -0400875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/*
878 * Generate multiple small requests to write out a single
879 * contiguous dirty area on one page.
880 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400881static 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 -0700882{
883 struct nfs_page *req = nfs_list_entry(head->next);
884 struct page *page = req->wb_page;
885 struct nfs_write_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700886 size_t wsize = NFS_SERVER(inode)->wsize, nbytes;
887 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 int requests = 0;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400889 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 LIST_HEAD(list);
891
892 nfs_list_remove_request(req);
893
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400894 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700895 do {
896 size_t len = min(nbytes, wsize);
897
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400898 data = nfs_writedata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (!data)
900 goto out_bad;
901 list_add(&data->pages, &list);
902 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700903 nbytes -= len;
904 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 atomic_set(&req->wb_complete, requests);
906
907 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400909 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 do {
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400911 int ret2;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 data = list_entry(list.next, struct nfs_write_data, pages);
914 list_del_init(&data->pages);
915
916 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400918 if (nbytes < wsize)
919 wsize = nbytes;
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400920 ret2 = nfs_write_rpcsetup(req, data, &nfs_write_partial_ops,
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400921 wsize, offset, how);
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400922 if (ret == 0)
923 ret = ret2;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400924 offset += wsize;
925 nbytes -= wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 } while (nbytes != 0);
927
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400928 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930out_bad:
931 while (!list_empty(&list)) {
932 data = list_entry(list.next, struct nfs_write_data, pages);
933 list_del(&data->pages);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500934 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
Trond Myklebust61822ab2006-12-05 00:35:42 -0500936 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return -ENOMEM;
938}
939
940/*
941 * Create an RPC task for the given write request and kick it.
942 * The page must have been locked by the caller.
943 *
944 * It may happen that the page we're passed is not marked dirty.
945 * This is the case if nfs_updatepage detects a conflicting request
946 * that has been written but not committed.
947 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400948static 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 -0700949{
950 struct nfs_page *req;
951 struct page **pages;
952 struct nfs_write_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400954 data = nfs_writedata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (!data)
956 goto out_bad;
957
958 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 while (!list_empty(head)) {
960 req = nfs_list_entry(head->next);
961 nfs_list_remove_request(req);
962 nfs_list_add_request(req, &data->pages);
963 ClearPageError(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966 req = nfs_list_entry(data->pages.next);
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* Set up the argument struct */
Trond Myklebustdbae4c72008-04-14 14:54:53 -0400969 return nfs_write_rpcsetup(req, data, &nfs_write_full_ops, count, 0, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 out_bad:
971 while (!list_empty(head)) {
Trond Myklebust10afec92007-05-14 17:16:04 -0400972 req = nfs_list_entry(head->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 nfs_list_remove_request(req);
Trond Myklebust61822ab2006-12-05 00:35:42 -0500974 nfs_redirty_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976 return -ENOMEM;
977}
978
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400979static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
980 struct inode *inode, int ioflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Chuck Leverbf4285e2007-12-20 14:54:57 -0500982 size_t wsize = NFS_SERVER(inode)->wsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400984 if (wsize < PAGE_CACHE_SIZE)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400985 nfs_pageio_init(pgio, inode, nfs_flush_multi, wsize, ioflags);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400986 else
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400987 nfs_pageio_init(pgio, inode, nfs_flush_one, wsize, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
990/*
991 * Handle a write reply that flushed part of a page.
992 */
Trond Myklebust788e7a82006-03-20 13:44:27 -0500993static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Trond Myklebust788e7a82006-03-20 13:44:27 -0500995 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Chuck Lever48186c72008-06-11 17:56:05 -0400997 dprintk("NFS: %5u write(%s/%lld %d@%lld)",
998 task->tk_pid,
999 data->req->wb_context->path.dentry->d_inode->i_sb->s_id,
1000 (long long)
1001 NFS_FILEID(data->req->wb_context->path.dentry->d_inode),
1002 data->req->wb_bytes, (long long)req_offset(data->req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001004 nfs_writeback_done(task, data);
1005}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001006
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001007static void nfs_writeback_release_partial(void *calldata)
1008{
1009 struct nfs_write_data *data = calldata;
1010 struct nfs_page *req = data->req;
1011 struct page *page = req->wb_page;
1012 int status = data->task.tk_status;
1013
1014 if (status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001015 nfs_set_pageerror(page);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001016 nfs_context_set_write_error(req->wb_context, status);
1017 dprintk(", error = %d\n", status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001018 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001021 if (nfs_write_need_commit(data)) {
Trond Myklebust587142f2007-07-02 09:57:54 -04001022 struct inode *inode = page->mapping->host;
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001023
Trond Myklebust587142f2007-07-02 09:57:54 -04001024 spin_lock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001025 if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
1026 /* Do nothing we need to resend the writes */
1027 } else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
1028 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1029 dprintk(" defer commit\n");
1030 } else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
1031 set_bit(PG_NEED_RESCHED, &req->wb_flags);
1032 clear_bit(PG_NEED_COMMIT, &req->wb_flags);
1033 dprintk(" server reboot detected\n");
1034 }
Trond Myklebust587142f2007-07-02 09:57:54 -04001035 spin_unlock(&inode->i_lock);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001036 } else
1037 dprintk(" OK\n");
1038
1039out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (atomic_dec_and_test(&req->wb_complete))
1041 nfs_writepage_release(req);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001042 nfs_writedata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Andy Adamsondef6ed72009-04-01 09:22:26 -04001045#if defined(CONFIG_NFS_V4_1)
1046void nfs_write_prepare(struct rpc_task *task, void *calldata)
1047{
1048 struct nfs_write_data *data = calldata;
Andy Adamsondef6ed72009-04-01 09:22:26 -04001049
Trond Myklebust035168a2010-06-16 09:52:26 -04001050 if (nfs4_setup_sequence(NFS_SERVER(data->inode),
1051 &data->args.seq_args,
Andy Adamsondef6ed72009-04-01 09:22:26 -04001052 &data->res.seq_res, 1, task))
1053 return;
1054 rpc_call_start(task);
1055}
1056#endif /* CONFIG_NFS_V4_1 */
1057
Trond Myklebust788e7a82006-03-20 13:44:27 -05001058static const struct rpc_call_ops nfs_write_partial_ops = {
Andy Adamsondef6ed72009-04-01 09:22:26 -04001059#if defined(CONFIG_NFS_V4_1)
1060 .rpc_call_prepare = nfs_write_prepare,
1061#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001062 .rpc_call_done = nfs_writeback_done_partial,
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001063 .rpc_release = nfs_writeback_release_partial,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001064};
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066/*
1067 * Handle a write reply that flushes a whole page.
1068 *
1069 * FIXME: There is an inherent race with invalidate_inode_pages and
1070 * writebacks since the page->count is kept > 1 for as long
1071 * as the page has a write request pending.
1072 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001073static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001075 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001077 nfs_writeback_done(task, data);
1078}
1079
1080static void nfs_writeback_release_full(void *calldata)
1081{
1082 struct nfs_write_data *data = calldata;
1083 int status = data->task.tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /* Update attributes as result of writeback. */
1086 while (!list_empty(&data->pages)) {
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001087 struct nfs_page *req = nfs_list_entry(data->pages.next);
1088 struct page *page = req->wb_page;
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Chuck Lever48186c72008-06-11 17:56:05 -04001092 dprintk("NFS: %5u write (%s/%lld %d@%lld)",
1093 data->task.tk_pid,
Trond Myklebust88be9f92007-06-05 10:42:27 -04001094 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1095 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 req->wb_bytes,
1097 (long long)req_offset(req));
1098
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001099 if (status < 0) {
Trond Myklebusta301b772007-02-06 11:07:15 -08001100 nfs_set_pageerror(page);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001101 nfs_context_set_write_error(req->wb_context, status);
1102 dprintk(", error = %d\n", status);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001103 goto remove_request;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001106 if (nfs_write_need_commit(data)) {
1107 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1108 nfs_mark_request_commit(req);
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001109 dprintk(" marked for commit\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto next;
1111 }
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001112 dprintk(" OK\n");
1113remove_request:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 nfs_inode_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001116 nfs_clear_page_tag_locked(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -04001117 nfs_end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001119 nfs_writedata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
Trond Myklebust788e7a82006-03-20 13:44:27 -05001122static const struct rpc_call_ops nfs_write_full_ops = {
Andy Adamsondef6ed72009-04-01 09:22:26 -04001123#if defined(CONFIG_NFS_V4_1)
1124 .rpc_call_prepare = nfs_write_prepare,
1125#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001126 .rpc_call_done = nfs_writeback_done_full,
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001127 .rpc_release = nfs_writeback_release_full,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001128};
1129
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131/*
1132 * This function is called when the WRITE call is complete.
1133 */
Chuck Lever462d5b32006-03-20 13:44:32 -05001134int nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 struct nfs_writeargs *argp = &data->args;
1137 struct nfs_writeres *resp = &data->res;
Andy Adamsoneedc0202009-04-01 09:22:41 -04001138 struct nfs_server *server = NFS_SERVER(data->inode);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001139 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Chuck Levera3f565b2007-01-31 12:14:01 -05001141 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 task->tk_pid, task->tk_status);
1143
Chuck Leverf551e442006-09-20 14:33:04 -04001144 /*
1145 * ->write_done will attempt to use post-op attributes to detect
1146 * conflicting writes by other clients. A strict interpretation
1147 * of close-to-open would allow us to continue caching even if
1148 * another writer had changed the file, but some applications
1149 * depend on tighter cache coherency when writing.
1150 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001151 status = NFS_PROTO(data->inode)->write_done(task, data);
1152 if (status != 0)
1153 return status;
Chuck Lever91d5b472006-03-20 13:44:14 -05001154 nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1157 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1158 /* We tried a write call, but the server did not
1159 * commit data to stable storage even though we
1160 * requested it.
1161 * Note: There is a known bug in Tru64 < 5.0 in which
1162 * the server reports NFS_DATA_SYNC, but performs
1163 * NFS_FILE_SYNC. We therefore implement this checking
1164 * as a dprintk() in order to avoid filling syslog.
1165 */
1166 static unsigned long complain;
1167
1168 if (time_before(complain, jiffies)) {
Chuck Lever48186c72008-06-11 17:56:05 -04001169 dprintk("NFS: faulty NFS server %s:"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 " (committed = %d) != (stable = %d)\n",
Andy Adamsoneedc0202009-04-01 09:22:41 -04001171 server->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 resp->verf->committed, argp->stable);
1173 complain = jiffies + 300 * HZ;
1174 }
1175 }
1176#endif
1177 /* Is this a short write? */
1178 if (task->tk_status >= 0 && resp->count < argp->count) {
1179 static unsigned long complain;
1180
Chuck Lever91d5b472006-03-20 13:44:14 -05001181 nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /* Has the server at least made some progress? */
1184 if (resp->count != 0) {
1185 /* Was this an NFSv2 write or an NFSv3 stable write? */
1186 if (resp->verf->committed != NFS_UNSTABLE) {
1187 /* Resend from where the server left off */
1188 argp->offset += resp->count;
1189 argp->pgbase += resp->count;
1190 argp->count -= resp->count;
1191 } else {
1192 /* Resend as a stable write in order to avoid
1193 * headaches in the case of a server crash.
1194 */
1195 argp->stable = NFS_FILE_SYNC;
1196 }
Trond Myklebust0110ee12009-12-07 09:00:24 -05001197 nfs_restart_rpc(task, server->nfs_client);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001198 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 if (time_before(complain, jiffies)) {
1201 printk(KERN_WARNING
1202 "NFS: Server wrote zero bytes, expected %u.\n",
1203 argp->count);
1204 complain = jiffies + 300 * HZ;
1205 }
1206 /* Can't do anything about it except throw an error. */
1207 task->tk_status = -EIO;
1208 }
Trond Myklebust788e7a82006-03-20 13:44:27 -05001209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212
1213#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust71d0a612010-04-22 15:35:57 -04001214static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
1215{
1216 if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
1217 return 1;
1218 if (may_wait && !out_of_line_wait_on_bit_lock(&nfsi->flags,
1219 NFS_INO_COMMIT, nfs_wait_bit_killable,
1220 TASK_KILLABLE))
1221 return 1;
1222 return 0;
1223}
1224
1225static void nfs_commit_clear_lock(struct nfs_inode *nfsi)
1226{
1227 clear_bit(NFS_INO_COMMIT, &nfsi->flags);
1228 smp_mb__after_clear_bit();
1229 wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
1230}
1231
1232
H Hartley Sweeten0aa05882010-01-26 15:42:03 -05001233static void nfs_commitdata_release(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Trond Myklebust383ba712008-02-19 20:04:20 -05001235 struct nfs_write_data *wdata = data;
1236
1237 put_nfs_open_context(wdata->args.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 nfs_commit_free(wdata);
1239}
1240
1241/*
1242 * Set up the argument/result storage required for the RPC call.
1243 */
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001244static int nfs_commit_rpcsetup(struct list_head *head,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001245 struct nfs_write_data *data,
1246 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Trond Myklebust84115e12007-07-14 15:39:59 -04001248 struct nfs_page *first = nfs_list_entry(head->next);
1249 struct inode *inode = first->wb_context->path.dentry->d_inode;
Trond Myklebust3ff75762007-07-14 15:40:00 -04001250 int priority = flush_task_priority(how);
Trond Myklebust07737692007-10-25 18:42:54 -04001251 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001252 struct rpc_message msg = {
1253 .rpc_argp = &data->args,
1254 .rpc_resp = &data->res,
1255 .rpc_cred = first->wb_context->cred,
1256 };
Trond Myklebust84115e12007-07-14 15:39:59 -04001257 struct rpc_task_setup task_setup_data = {
Trond Myklebust07737692007-10-25 18:42:54 -04001258 .task = &data->task,
Trond Myklebust84115e12007-07-14 15:39:59 -04001259 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001260 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -04001261 .callback_ops = &nfs_commit_ops,
1262 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001263 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -04001264 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -04001265 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -04001266 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /* Set up the RPC argument and reply structs
1269 * NB: take care not to mess about with data->commit et al. */
1270
1271 list_splice_init(head, &data->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001274 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 data->args.fh = NFS_FH(data->inode);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001277 /* Note: we always request a commit of the entire inode */
1278 data->args.offset = 0;
1279 data->args.count = 0;
Trond Myklebust383ba712008-02-19 20:04:20 -05001280 data->args.context = get_nfs_open_context(first->wb_context);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001281 data->res.count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 data->res.fattr = &data->fattr;
1283 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -04001284 nfs_fattr_init(&data->fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001285
1286 /* Set up the initial task struct. */
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001287 NFS_PROTO(inode)->commit_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Chuck Levera3f565b2007-01-31 12:14:01 -05001289 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001290
Trond Myklebust07737692007-10-25 18:42:54 -04001291 task = rpc_run_task(&task_setup_data);
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001292 if (IS_ERR(task))
1293 return PTR_ERR(task);
1294 rpc_put_task(task);
1295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298/*
1299 * Commit dirty pages
1300 */
1301static int
Chuck Lever40859d72005-11-30 18:09:02 -05001302nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 struct nfs_write_data *data;
1305 struct nfs_page *req;
1306
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001307 data = nfs_commitdata_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 if (!data)
1310 goto out_bad;
1311
1312 /* Set up the argument struct */
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001313 return nfs_commit_rpcsetup(head, data, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 out_bad:
1315 while (!list_empty(head)) {
1316 req = nfs_list_entry(head->next);
1317 nfs_list_remove_request(req);
1318 nfs_mark_request_commit(req);
Trond Myklebust83715ad2006-07-05 13:17:12 -04001319 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -07001320 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1321 BDI_RECLAIMABLE);
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001322 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 }
Trond Myklebust71d0a612010-04-22 15:35:57 -04001324 nfs_commit_clear_lock(NFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return -ENOMEM;
1326}
1327
1328/*
1329 * COMMIT call returned
1330 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001331static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001333 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Chuck Levera3f565b2007-01-31 12:14:01 -05001335 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 task->tk_pid, task->tk_status);
1337
Trond Myklebust788e7a82006-03-20 13:44:27 -05001338 /* Call the NFS version-specific code */
1339 if (NFS_PROTO(data->inode)->commit_done(task, data) != 0)
1340 return;
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001341}
1342
1343static void nfs_commit_release(void *calldata)
1344{
1345 struct nfs_write_data *data = calldata;
1346 struct nfs_page *req;
1347 int status = data->task.tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 while (!list_empty(&data->pages)) {
1350 req = nfs_list_entry(data->pages.next);
1351 nfs_list_remove_request(req);
Trond Myklebuste468bae2008-06-13 13:25:22 -04001352 nfs_clear_request_commit(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Chuck Lever48186c72008-06-11 17:56:05 -04001354 dprintk("NFS: commit (%s/%lld %d@%lld)",
Trond Myklebust88be9f92007-06-05 10:42:27 -04001355 req->wb_context->path.dentry->d_inode->i_sb->s_id,
1356 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 req->wb_bytes,
1358 (long long)req_offset(req));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001359 if (status < 0) {
1360 nfs_context_set_write_error(req->wb_context, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 nfs_inode_remove_request(req);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001362 dprintk(", error = %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 goto next;
1364 }
1365
1366 /* Okay, COMMIT succeeded, apparently. Check the verifier
1367 * returned by the server against all stored verfs. */
1368 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1369 /* We have a match */
1370 nfs_inode_remove_request(req);
1371 dprintk(" OK\n");
1372 goto next;
1373 }
1374 /* We have a mismatch. Write the page again */
1375 dprintk(" mismatch\n");
Fred6d884e82008-03-19 11:24:38 -04001376 nfs_mark_request_dirty(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 next:
Trond Myklebust9fd367f2007-06-17 15:10:24 -04001378 nfs_clear_page_tag_locked(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Trond Myklebust71d0a612010-04-22 15:35:57 -04001380 nfs_commit_clear_lock(NFS_I(data->inode));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001381 nfs_commitdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001383
1384static const struct rpc_call_ops nfs_commit_ops = {
Andy Adamson21d9a852009-04-01 09:22:27 -04001385#if defined(CONFIG_NFS_V4_1)
1386 .rpc_call_prepare = nfs_write_prepare,
1387#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001388 .rpc_call_done = nfs_commit_done,
1389 .rpc_release = nfs_commit_release,
1390};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Trond Myklebustb608b282010-07-30 15:31:54 -04001392int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 LIST_HEAD(head);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001395 int may_wait = how & FLUSH_SYNC;
1396 int res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Trond Myklebust71d0a612010-04-22 15:35:57 -04001398 if (!nfs_commit_set_lock(NFS_I(inode), may_wait))
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001399 goto out_mark_dirty;
Trond Myklebust587142f2007-07-02 09:57:54 -04001400 spin_lock(&inode->i_lock);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001401 res = nfs_scan_commit(inode, &head, 0, 0);
Trond Myklebust587142f2007-07-02 09:57:54 -04001402 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (res) {
Trond Myklebust7d46a492006-03-20 13:44:50 -05001404 int error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001405 if (error < 0)
1406 return error;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001407 if (may_wait)
1408 wait_on_bit(&NFS_I(inode)->flags, NFS_INO_COMMIT,
1409 nfs_wait_bit_killable,
1410 TASK_KILLABLE);
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001411 else
1412 goto out_mark_dirty;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001413 } else
1414 nfs_commit_clear_lock(NFS_I(inode));
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001415 return res;
1416 /* Note: If we exit without ensuring that the commit is complete,
1417 * we must mark the inode as dirty. Otherwise, future calls to
1418 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1419 * that the data is on the disk.
1420 */
1421out_mark_dirty:
1422 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return res;
1424}
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001425
1426static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1427{
Trond Myklebust420e3642010-02-19 17:00:02 -08001428 struct nfs_inode *nfsi = NFS_I(inode);
1429 int flags = FLUSH_SYNC;
1430 int ret = 0;
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001431
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001432 if (wbc->sync_mode == WB_SYNC_NONE) {
1433 /* Don't commit yet if this is a non-blocking flush and there
1434 * are a lot of outstanding writes for this mapping.
1435 */
1436 if (nfsi->ncommit <= (nfsi->npages >> 1))
1437 goto out_mark_dirty;
Trond Myklebust420e3642010-02-19 17:00:02 -08001438
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001439 /* don't wait for the COMMIT response */
Trond Myklebust420e3642010-02-19 17:00:02 -08001440 flags = 0;
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001441 }
1442
Trond Myklebust420e3642010-02-19 17:00:02 -08001443 ret = nfs_commit_inode(inode, flags);
1444 if (ret >= 0) {
1445 if (wbc->sync_mode == WB_SYNC_NONE) {
1446 if (ret < wbc->nr_to_write)
1447 wbc->nr_to_write -= ret;
1448 else
1449 wbc->nr_to_write = 0;
1450 }
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001451 return 0;
Trond Myklebust420e3642010-02-19 17:00:02 -08001452 }
1453out_mark_dirty:
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001454 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1455 return ret;
1456}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001457#else
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001458static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1459{
1460 return 0;
1461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462#endif
1463
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001464int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1465{
1466 return nfs_commit_unstable_pages(inode, wbc);
1467}
1468
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001469/*
1470 * flush the inode to disk.
1471 */
1472int nfs_wb_all(struct inode *inode)
Trond Myklebust34901f72007-07-25 14:09:54 -04001473{
1474 struct writeback_control wbc = {
Trond Myklebust72cb77f2009-03-11 14:10:30 -04001475 .sync_mode = WB_SYNC_ALL,
Trond Myklebust34901f72007-07-25 14:09:54 -04001476 .nr_to_write = LONG_MAX,
Trond Myklebustd7fb1202008-10-06 20:08:56 -04001477 .range_start = 0,
1478 .range_end = LLONG_MAX,
Trond Myklebust34901f72007-07-25 14:09:54 -04001479 };
Trond Myklebust34901f72007-07-25 14:09:54 -04001480
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001481 return sync_inode(inode, &wbc);
Trond Myklebust1c759502006-10-09 16:18:38 -04001482}
1483
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001484int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1485{
1486 struct nfs_page *req;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001487 int ret = 0;
1488
1489 BUG_ON(!PageLocked(page));
1490 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001491 wait_on_page_writeback(page);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001492 req = nfs_page_find_request(page);
1493 if (req == NULL)
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001494 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001495 if (nfs_lock_request_dontget(req)) {
1496 nfs_inode_remove_request(req);
1497 /*
1498 * In case nfs_inode_remove_request has marked the
1499 * page as being dirty
1500 */
1501 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1502 nfs_unlock_request(req);
1503 break;
1504 }
1505 ret = nfs_wait_on_request(req);
Trond Myklebustc9edda72010-01-26 15:41:34 -05001506 nfs_release_request(req);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001507 if (ret < 0)
Trond Myklebustc9889502010-02-19 17:03:21 -08001508 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001509 }
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001510 return ret;
1511}
1512
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001513/*
1514 * Write back all requests on one page - we do this before reading it.
1515 */
1516int nfs_wb_page(struct inode *inode, struct page *page)
Trond Myklebust1c759502006-10-09 16:18:38 -04001517{
1518 loff_t range_start = page_offset(page);
1519 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001520 struct writeback_control wbc = {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001521 .sync_mode = WB_SYNC_ALL,
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001522 .nr_to_write = 0,
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001523 .range_start = range_start,
1524 .range_end = range_end,
1525 };
1526 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001527
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001528 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001529 wait_on_page_writeback(page);
Trond Myklebust73e33022008-04-11 16:03:54 -04001530 if (clear_page_dirty_for_io(page)) {
1531 ret = nfs_writepage_locked(page, &wbc);
1532 if (ret < 0)
1533 goto out_error;
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001534 continue;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001535 }
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001536 if (!PagePrivate(page))
1537 break;
1538 ret = nfs_commit_inode(inode, FLUSH_SYNC);
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001539 if (ret < 0)
Trond Myklebust73e33022008-04-11 16:03:54 -04001540 goto out_error;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001541 }
Trond Myklebust73e33022008-04-11 16:03:54 -04001542 return 0;
1543out_error:
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001544 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001545}
1546
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001547#ifdef CONFIG_MIGRATION
1548int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
1549 struct page *page)
1550{
1551 struct nfs_page *req;
1552 int ret;
1553
Trond Myklebust7549ad52010-02-08 09:32:34 -05001554 nfs_fscache_release_page(page, GFP_KERNEL);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001555
Trond Myklebustcfb506e2010-07-30 15:31:57 -04001556 req = nfs_find_and_lock_request(page, false);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001557 ret = PTR_ERR(req);
1558 if (IS_ERR(req))
1559 goto out;
1560
1561 ret = migrate_page(mapping, newpage, page);
1562 if (!req)
1563 goto out;
1564 if (ret)
1565 goto out_unlock;
1566 page_cache_get(newpage);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001567 spin_lock(&mapping->host->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001568 req->wb_page = newpage;
1569 SetPagePrivate(newpage);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001570 set_page_private(newpage, (unsigned long)req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001571 ClearPagePrivate(page);
1572 set_page_private(page, 0);
Trond Myklebust190f38e2009-12-10 09:05:55 -05001573 spin_unlock(&mapping->host->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001574 page_cache_release(page);
1575out_unlock:
1576 nfs_clear_page_tag_locked(req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001577out:
1578 return ret;
1579}
1580#endif
1581
David Howellsf7b422b2006-06-09 09:34:33 -04001582int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583{
1584 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1585 sizeof(struct nfs_write_data),
1586 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001587 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (nfs_wdata_cachep == NULL)
1589 return -ENOMEM;
1590
Matthew Dobson93d23412006-03-26 01:37:50 -08001591 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1592 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (nfs_wdata_mempool == NULL)
1594 return -ENOMEM;
1595
Matthew Dobson93d23412006-03-26 01:37:50 -08001596 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1597 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (nfs_commit_mempool == NULL)
1599 return -ENOMEM;
1600
Peter Zijlstra89a09142007-03-16 13:38:26 -08001601 /*
1602 * NFS congestion size, scale with available memory.
1603 *
1604 * 64MB: 8192k
1605 * 128MB: 11585k
1606 * 256MB: 16384k
1607 * 512MB: 23170k
1608 * 1GB: 32768k
1609 * 2GB: 46340k
1610 * 4GB: 65536k
1611 * 8GB: 92681k
1612 * 16GB: 131072k
1613 *
1614 * This allows larger machines to have larger/more transfers.
1615 * Limit the default to 256M
1616 */
1617 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1618 if (nfs_congestion_kb > 256*1024)
1619 nfs_congestion_kb = 256*1024;
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
1622}
1623
David Brownell266bee82006-06-27 12:59:15 -07001624void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 mempool_destroy(nfs_commit_mempool);
1627 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001628 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
1630