blob: 150397279b8d2b74b995113e1a6a6a600cfb95a3 [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>
Paul Gortmakerafeacc82011-05-26 16:00:52 -040023#include <linux/export.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "delegation.h"
Trond Myklebust49a70f22006-12-05 00:35:38 -050028#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050029#include "iostat.h"
Andy Adamsondef6ed72009-04-01 09:22:26 -040030#include "nfs4_fs.h"
Trond Myklebust074cc1d2009-08-10 08:54:13 -040031#include "fscache.h"
Fred Isaman94ad1c82011-03-01 01:34:14 +000032#include "pnfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#define NFSDBG_FACILITY NFSDBG_PAGECACHE
35
36#define MIN_POOL_WRITE (32)
37#define MIN_POOL_COMMIT (4)
38
39/*
40 * Local function declarations
41 */
Trond Myklebustc63c7b02007-04-02 19:29:52 -040042static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
Fred Isaman061ae2e2012-04-20 14:47:48 -040043 struct inode *inode, int ioflags,
44 const struct nfs_pgio_completion_ops *compl_ops);
Fred Isamanf8512ad2008-03-19 11:24:39 -040045static void nfs_redirty_request(struct nfs_page *req);
Fred Isaman6c75dc02012-04-20 14:47:47 -040046static const struct rpc_call_ops nfs_write_common_ops;
Trond Myklebust788e7a82006-03-20 13:44:27 -050047static const struct rpc_call_ops nfs_commit_ops;
Fred Isaman061ae2e2012-04-20 14:47:48 -040048static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Lametere18b8902006-12-06 20:33:20 -080050static struct kmem_cache *nfs_wdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050051static mempool_t *nfs_wdata_mempool;
Fred Isaman0b7c0152012-04-20 14:47:39 -040052static struct kmem_cache *nfs_cdata_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static mempool_t *nfs_commit_mempool;
54
Fred Isaman0b7c0152012-04-20 14:47:39 -040055struct nfs_commit_data *nfs_commitdata_alloc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Fred Isaman0b7c0152012-04-20 14:47:39 -040057 struct nfs_commit_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
Chuck Lever40859d72005-11-30 18:09:02 -050058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (p) {
60 memset(p, 0, sizeof(*p));
61 INIT_LIST_HEAD(&p->pages);
62 }
63 return p;
64}
Fred Isamane0c2b382011-03-23 13:27:53 +000065EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Fred Isaman0b7c0152012-04-20 14:47:39 -040067void nfs_commit_free(struct nfs_commit_data *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 mempool_free(p, nfs_commit_mempool);
70}
Fred Isamane0c2b382011-03-23 13:27:53 +000071EXPORT_SYMBOL_GPL(nfs_commit_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Fred Isaman6c75dc02012-04-20 14:47:47 -040073struct nfs_write_header *nfs_writehdr_alloc(void)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050074{
Fred Isamancd841602012-04-20 14:47:44 -040075 struct nfs_write_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050076
77 if (p) {
Fred Isamancd841602012-04-20 14:47:44 -040078 struct nfs_pgio_header *hdr = &p->header;
Fred Isamancd841602012-04-20 14:47:44 -040079
Trond Myklebust3feb2d42006-03-20 13:44:37 -050080 memset(p, 0, sizeof(*p));
Fred Isamancd841602012-04-20 14:47:44 -040081 INIT_LIST_HEAD(&hdr->pages);
Fred Isaman6c75dc02012-04-20 14:47:47 -040082 INIT_LIST_HEAD(&hdr->rpc_list);
83 spin_lock_init(&hdr->lock);
84 atomic_set(&hdr->refcnt, 0);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050085 }
86 return p;
87}
88
Fred Isaman6c75dc02012-04-20 14:47:47 -040089struct nfs_write_data *nfs_writedata_alloc(struct nfs_pgio_header *hdr,
90 unsigned int pagecount)
91{
92 struct nfs_write_data *data, *prealloc;
93
94 prealloc = &container_of(hdr, struct nfs_write_header, header)->rpc_data;
95 if (prealloc->header == NULL)
96 data = prealloc;
97 else
98 data = kzalloc(sizeof(*data), GFP_KERNEL);
99 if (!data)
100 goto out;
101
102 if (nfs_pgarray_set(&data->pages, pagecount)) {
103 data->header = hdr;
104 atomic_inc(&hdr->refcnt);
105 } else {
106 if (data != prealloc)
107 kfree(data);
108 data = NULL;
109 }
110out:
111 return data;
112}
113
Fred Isamancd841602012-04-20 14:47:44 -0400114void nfs_writehdr_free(struct nfs_pgio_header *hdr)
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500115{
Fred Isamancd841602012-04-20 14:47:44 -0400116 struct nfs_write_header *whdr = container_of(hdr, struct nfs_write_header, header);
117 mempool_free(whdr, nfs_wdata_mempool);
Trond Myklebust3feb2d42006-03-20 13:44:37 -0500118}
119
Trond Myklebustdce81292011-07-13 15:59:19 -0400120void nfs_writedata_release(struct nfs_write_data *wdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Fred Isaman6c75dc02012-04-20 14:47:47 -0400122 struct nfs_pgio_header *hdr = wdata->header;
123 struct nfs_write_header *write_header = container_of(hdr, struct nfs_write_header, header);
124
Trond Myklebust383ba712008-02-19 20:04:20 -0500125 put_nfs_open_context(wdata->args.context);
Fred Isaman30dd3742012-04-20 14:47:45 -0400126 if (wdata->pages.pagevec != wdata->pages.page_array)
127 kfree(wdata->pages.pagevec);
Fred Isaman6c75dc02012-04-20 14:47:47 -0400128 if (wdata != &write_header->rpc_data)
129 kfree(wdata);
130 else
131 wdata->header = NULL;
132 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -0400133 hdr->completion_ops->completion(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Trond Myklebust7b159fc2007-07-25 14:09:54 -0400136static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
137{
138 ctx->error = error;
139 smp_wmb();
140 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
141}
142
Trond Myklebust277459d2006-12-05 00:35:35 -0500143static struct nfs_page *nfs_page_find_request_locked(struct page *page)
144{
145 struct nfs_page *req = NULL;
146
147 if (PagePrivate(page)) {
148 req = (struct nfs_page *)page_private(page);
149 if (req != NULL)
Trond Myklebustc03b4022007-06-17 13:26:38 -0400150 kref_get(&req->wb_kref);
Trond Myklebust277459d2006-12-05 00:35:35 -0500151 }
152 return req;
153}
154
155static struct nfs_page *nfs_page_find_request(struct page *page)
156{
Trond Myklebust587142f2007-07-02 09:57:54 -0400157 struct inode *inode = page->mapping->host;
Trond Myklebust277459d2006-12-05 00:35:35 -0500158 struct nfs_page *req = NULL;
Trond Myklebust277459d2006-12-05 00:35:35 -0500159
Trond Myklebust587142f2007-07-02 09:57:54 -0400160 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500161 req = nfs_page_find_request_locked(page);
Trond Myklebust587142f2007-07-02 09:57:54 -0400162 spin_unlock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500163 return req;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* Adjust the file length if we're writing beyond the end */
167static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
168{
169 struct inode *inode = page->mapping->host;
Trond Myklebusta3d01452008-06-11 12:21:19 -0400170 loff_t end, i_size;
171 pgoff_t end_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Trond Myklebusta3d01452008-06-11 12:21:19 -0400173 spin_lock(&inode->i_lock);
174 i_size = i_size_read(inode);
175 end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (i_size > 0 && page->index < end_index)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400177 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
179 if (i_size >= end)
Trond Myklebusta3d01452008-06-11 12:21:19 -0400180 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 i_size_write(inode, end);
Trond Myklebusta3d01452008-06-11 12:21:19 -0400182 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
183out:
184 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Trond Myklebusta301b772007-02-06 11:07:15 -0800187/* A writeback failed: mark the page as bad, and invalidate the page cache */
188static void nfs_set_pageerror(struct page *page)
189{
190 SetPageError(page);
191 nfs_zap_mapping(page->mapping->host, page->mapping);
192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* We can set the PG_uptodate flag if we see that a write request
195 * covers the full page.
196 */
197static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (PageUptodate(page))
200 return;
201 if (base != 0)
202 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500203 if (count != nfs_page_length(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return;
Trond Myklebust49a70f22006-12-05 00:35:38 -0500205 SetPageUptodate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static int wb_priority(struct writeback_control *wbc)
209{
210 if (wbc->for_reclaim)
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400211 return FLUSH_HIGHPRI | FLUSH_STABLE;
Wu Fengguangb17621f2009-12-03 13:54:25 +0100212 if (wbc->for_kupdate || wbc->for_background)
Trond Myklebustb31268a2011-03-21 17:02:00 -0400213 return FLUSH_LOWPRI | FLUSH_COND_STABLE;
214 return FLUSH_COND_STABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800218 * NFS congestion control
219 */
220
221int nfs_congestion_kb;
222
223#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
224#define NFS_CONGESTION_OFF_THRESH \
225 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
226
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400227static int nfs_set_page_writeback(struct page *page)
Peter Zijlstra89a09142007-03-16 13:38:26 -0800228{
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400229 int ret = test_set_page_writeback(page);
230
231 if (!ret) {
Peter Zijlstra89a09142007-03-16 13:38:26 -0800232 struct inode *inode = page->mapping->host;
233 struct nfs_server *nfss = NFS_SERVER(inode);
234
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400235 page_cache_get(page);
Peter Zijlstra277866a2007-05-08 00:35:12 -0700236 if (atomic_long_inc_return(&nfss->writeback) >
Jens Axboe8aa7e842009-07-09 14:52:32 +0200237 NFS_CONGESTION_ON_THRESH) {
238 set_bdi_congested(&nfss->backing_dev_info,
239 BLK_RW_ASYNC);
240 }
Peter Zijlstra89a09142007-03-16 13:38:26 -0800241 }
Trond Myklebust5a6d41b2007-04-14 19:10:12 -0400242 return ret;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800243}
244
245static void nfs_end_page_writeback(struct page *page)
246{
247 struct inode *inode = page->mapping->host;
248 struct nfs_server *nfss = NFS_SERVER(inode);
249
250 end_page_writeback(page);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400251 page_cache_release(page);
Peter Zijlstrac4dc4be2007-10-16 23:25:41 -0700252 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
Jens Axboe8aa7e842009-07-09 14:52:32 +0200253 clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
Peter Zijlstra89a09142007-03-16 13:38:26 -0800254}
255
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400256static struct nfs_page *nfs_find_and_lock_request(struct page *page, bool nonblock)
Trond Myklebuste261f512006-12-05 00:35:41 -0500257{
Trond Myklebust587142f2007-07-02 09:57:54 -0400258 struct inode *inode = page->mapping->host;
Trond Myklebuste261f512006-12-05 00:35:41 -0500259 struct nfs_page *req;
Trond Myklebuste261f512006-12-05 00:35:41 -0500260 int ret;
261
Trond Myklebust587142f2007-07-02 09:57:54 -0400262 spin_lock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400263 for (;;) {
Trond Myklebuste261f512006-12-05 00:35:41 -0500264 req = nfs_page_find_request_locked(page);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400265 if (req == NULL)
266 break;
Fred Isaman9994b622012-03-08 17:29:34 -0500267 if (nfs_lock_request_dontget(req))
Trond Myklebuste261f512006-12-05 00:35:41 -0500268 break;
269 /* Note: If we hold the page lock, as is the case in nfs_writepage,
Fred Isaman9994b622012-03-08 17:29:34 -0500270 * then the call to nfs_lock_request_dontget() will always
Trond Myklebuste261f512006-12-05 00:35:41 -0500271 * succeed provided that someone hasn't already marked the
272 * request as dirty (in which case we don't care).
273 */
Trond Myklebust587142f2007-07-02 09:57:54 -0400274 spin_unlock(&inode->i_lock);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400275 if (!nonblock)
276 ret = nfs_wait_on_request(req);
277 else
278 ret = -EAGAIN;
Trond Myklebuste261f512006-12-05 00:35:41 -0500279 nfs_release_request(req);
280 if (ret != 0)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400281 return ERR_PTR(ret);
Trond Myklebust587142f2007-07-02 09:57:54 -0400282 spin_lock(&inode->i_lock);
Trond Myklebuste261f512006-12-05 00:35:41 -0500283 }
Trond Myklebust587142f2007-07-02 09:57:54 -0400284 spin_unlock(&inode->i_lock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400285 return req;
286}
287
288/*
289 * Find an associated nfs write request, and prepare to flush it out
290 * May return an error if the user signalled nfs_wait_on_request().
291 */
292static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400293 struct page *page, bool nonblock)
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400294{
295 struct nfs_page *req;
296 int ret = 0;
297
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400298 req = nfs_find_and_lock_request(page, nonblock);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400299 if (!req)
300 goto out;
301 ret = PTR_ERR(req);
302 if (IS_ERR(req))
303 goto out;
304
305 ret = nfs_set_page_writeback(page);
306 BUG_ON(ret != 0);
307 BUG_ON(test_bit(PG_CLEAN, &req->wb_flags));
308
Fred Isamanf8512ad2008-03-19 11:24:39 -0400309 if (!nfs_pageio_add_request(pgio, req)) {
310 nfs_redirty_request(req);
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400311 ret = pgio->pg_error;
Fred Isamanf8512ad2008-03-19 11:24:39 -0400312 }
Trond Myklebust074cc1d2009-08-10 08:54:13 -0400313out:
314 return ret;
Trond Myklebuste261f512006-12-05 00:35:41 -0500315}
316
Trond Myklebustf758c8852007-07-22 19:27:32 -0400317static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
318{
319 struct inode *inode = page->mapping->host;
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400320 int ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400321
322 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
323 nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
324
325 nfs_pageio_cond_complete(pgio, page->index);
Wu Fengguang1b430be2010-10-26 14:21:26 -0700326 ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE);
Trond Myklebustcfb506e2010-07-30 15:31:57 -0400327 if (ret == -EAGAIN) {
328 redirty_page_for_writepage(wbc, page);
329 ret = 0;
330 }
331 return ret;
Trond Myklebustf758c8852007-07-22 19:27:32 -0400332}
333
Trond Myklebuste261f512006-12-05 00:35:41 -0500334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Write an mmapped page to the server.
336 */
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500337static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400339 struct nfs_pageio_descriptor pgio;
Trond Myklebuste261f512006-12-05 00:35:41 -0500340 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Fred Isaman061ae2e2012-04-20 14:47:48 -0400342 nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc),
343 &nfs_async_write_completion_ops);
Trond Myklebustf758c8852007-07-22 19:27:32 -0400344 err = nfs_do_writepage(page, wbc, &pgio);
345 nfs_pageio_complete(&pgio);
346 if (err < 0)
347 return err;
348 if (pgio.pg_error < 0)
349 return pgio.pg_error;
350 return 0;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500351}
352
353int nfs_writepage(struct page *page, struct writeback_control *wbc)
354{
Trond Myklebustf758c8852007-07-22 19:27:32 -0400355 int ret;
Trond Myklebust4d770cc2006-12-05 00:35:41 -0500356
Trond Myklebustf758c8852007-07-22 19:27:32 -0400357 ret = nfs_writepage_locked(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unlock_page(page);
Trond Myklebustf758c8852007-07-22 19:27:32 -0400359 return ret;
360}
361
362static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
363{
364 int ret;
365
366 ret = nfs_do_writepage(page, wbc, data);
367 unlock_page(page);
368 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
372{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct inode *inode = mapping->host;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400374 unsigned long *bitlock = &NFS_I(inode)->flags;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400375 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int err;
377
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400378 /* Stop dirtying of new pages while we sync */
379 err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
380 nfs_wait_bit_killable, TASK_KILLABLE);
381 if (err)
382 goto out_err;
383
Chuck Lever91d5b472006-03-20 13:44:14 -0500384 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
385
Fred Isaman061ae2e2012-04-20 14:47:48 -0400386 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc),
387 &nfs_async_write_completion_ops);
Trond Myklebustf758c8852007-07-22 19:27:32 -0400388 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400389 nfs_pageio_complete(&pgio);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400390
391 clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
392 smp_mb__after_clear_bit();
393 wake_up_bit(bitlock, NFS_INO_FLUSHING);
394
Trond Myklebustf758c8852007-07-22 19:27:32 -0400395 if (err < 0)
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400396 goto out_err;
397 err = pgio.pg_error;
398 if (err < 0)
399 goto out_err;
Trond Myklebustc63c7b02007-04-02 19:29:52 -0400400 return 0;
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400401out_err:
402 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
406 * Insert a write request into an inode
407 */
Fred Isamand6d6dc72012-03-08 17:29:35 -0500408static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400411
412 /* Lock the request! */
413 nfs_lock_request_dontget(req);
414
415 spin_lock(&inode->i_lock);
Trond Myklebust4d65c522011-03-25 14:15:11 -0400416 if (!nfsi->npages && nfs_have_delegation(inode, FMODE_WRITE))
Trond Myklebusta9a4a872011-10-17 16:08:46 -0700417 inode->i_version++;
Trond Myklebust2df485a2010-12-07 22:39:17 -0500418 set_bit(PG_MAPPED, &req->wb_flags);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500419 SetPagePrivate(req->wb_page);
Trond Myklebust277459d2006-12-05 00:35:35 -0500420 set_page_private(req->wb_page, (unsigned long)req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 nfsi->npages++;
Trond Myklebustc03b4022007-06-17 13:26:38 -0400422 kref_get(&req->wb_kref);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400423 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426/*
Peter Zijlstra89a09142007-03-16 13:38:26 -0800427 * Remove a write request from an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
429static void nfs_inode_remove_request(struct nfs_page *req)
430{
Al Viro3d4ff432011-06-22 18:40:12 -0400431 struct inode *inode = req->wb_context->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct nfs_inode *nfsi = NFS_I(inode);
433
434 BUG_ON (!NFS_WBACK_BUSY(req));
435
Trond Myklebust587142f2007-07-02 09:57:54 -0400436 spin_lock(&inode->i_lock);
Trond Myklebust277459d2006-12-05 00:35:35 -0500437 set_page_private(req->wb_page, 0);
Trond Myklebustdeb7d632006-03-20 13:44:50 -0500438 ClearPagePrivate(req->wb_page);
Trond Myklebust2df485a2010-12-07 22:39:17 -0500439 clear_bit(PG_MAPPED, &req->wb_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 nfsi->npages--;
Trond Myklebust4d65c522011-03-25 14:15:11 -0400441 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 nfs_release_request(req);
443}
444
Trond Myklebust61822ab2006-12-05 00:35:42 -0500445static void
Fred6d884e82008-03-19 11:24:38 -0400446nfs_mark_request_dirty(struct nfs_page *req)
Trond Myklebust61822ab2006-12-05 00:35:42 -0500447{
Trond Myklebust61822ab2006-12-05 00:35:42 -0500448 __set_page_dirty_nobuffers(req->wb_page);
449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust8dd37752012-03-15 17:16:40 -0400452/**
453 * nfs_request_add_commit_list - add request to a commit list
454 * @req: pointer to a struct nfs_page
455 * @head: commit list head
456 *
457 * This sets the PG_CLEAN bit, updates the inode global count of
458 * number of outstanding requests requiring a commit as well as
459 * the MM page stats.
460 *
461 * The caller must _not_ hold the inode->i_lock, but must be
462 * holding the nfs_page lock.
463 */
464void
465nfs_request_add_commit_list(struct nfs_page *req, struct list_head *head)
466{
467 struct inode *inode = req->wb_context->dentry->d_inode;
468
469 set_bit(PG_CLEAN, &(req)->wb_flags);
470 spin_lock(&inode->i_lock);
471 nfs_list_add_request(req, head);
472 NFS_I(inode)->ncommit++;
473 spin_unlock(&inode->i_lock);
474 inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
475 inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
476 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
477}
478EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
479
480/**
481 * nfs_request_remove_commit_list - Remove request from a commit list
482 * @req: pointer to a nfs_page
483 *
484 * This clears the PG_CLEAN bit, and updates the inode global count of
485 * number of outstanding requests requiring a commit
486 * It does not update the MM page stats.
487 *
488 * The caller _must_ hold the inode->i_lock and the nfs_page lock.
489 */
490void
491nfs_request_remove_commit_list(struct nfs_page *req)
492{
493 struct inode *inode = req->wb_context->dentry->d_inode;
494
495 if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
496 return;
497 nfs_list_remove_request(req);
498 NFS_I(inode)->ncommit--;
499}
500EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
501
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
504 * Add a request to the inode's commit list.
505 */
506static void
Fred Isamana861a1e2011-03-23 13:27:51 +0000507nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Al Viro3d4ff432011-06-22 18:40:12 -0400509 struct inode *inode = req->wb_context->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Trond Myklebust8dd37752012-03-15 17:16:40 -0400511 if (pnfs_mark_request_commit(req, lseg))
512 return;
513 nfs_request_add_commit_list(req, &NFS_I(inode)->commit_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400515
Fred Isamand6d6dc72012-03-08 17:29:35 -0500516static void
517nfs_clear_page_commit(struct page *page)
518{
519 dec_zone_page_state(page, NR_UNSTABLE_NFS);
520 dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE);
521}
522
Trond Myklebust8dd37752012-03-15 17:16:40 -0400523static void
Trond Myklebuste468bae2008-06-13 13:25:22 -0400524nfs_clear_request_commit(struct nfs_page *req)
525{
Trond Myklebust8dd37752012-03-15 17:16:40 -0400526 if (test_bit(PG_CLEAN, &req->wb_flags)) {
527 struct inode *inode = req->wb_context->dentry->d_inode;
Trond Myklebuste468bae2008-06-13 13:25:22 -0400528
Trond Myklebust8dd37752012-03-15 17:16:40 -0400529 if (!pnfs_clear_request_commit(req)) {
530 spin_lock(&inode->i_lock);
531 nfs_request_remove_commit_list(req);
532 spin_unlock(&inode->i_lock);
533 }
Fred Isamand6d6dc72012-03-08 17:29:35 -0500534 nfs_clear_page_commit(req->wb_page);
Trond Myklebuste468bae2008-06-13 13:25:22 -0400535 }
Trond Myklebuste468bae2008-06-13 13:25:22 -0400536}
537
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400538static inline
539int nfs_write_need_commit(struct nfs_write_data *data)
540{
Fred Isaman465d5242011-03-23 13:27:44 +0000541 if (data->verf.committed == NFS_DATA_SYNC)
Fred Isamancd841602012-04-20 14:47:44 -0400542 return data->header->lseg == NULL;
543 return data->verf.committed != NFS_FILE_SYNC;
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400544}
545
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400546#else
Trond Myklebust8dd37752012-03-15 17:16:40 -0400547static void
Fred Isamana861a1e2011-03-23 13:27:51 +0000548nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg)
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400549{
550}
551
Trond Myklebust8dd37752012-03-15 17:16:40 -0400552static void
Trond Myklebuste468bae2008-06-13 13:25:22 -0400553nfs_clear_request_commit(struct nfs_page *req)
554{
Trond Myklebuste468bae2008-06-13 13:25:22 -0400555}
556
Trond Myklebust8e821ca2007-04-20 16:12:34 -0400557static inline
558int nfs_write_need_commit(struct nfs_write_data *data)
559{
560 return 0;
561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#endif
564
Fred Isaman061ae2e2012-04-20 14:47:48 -0400565static void nfs_write_completion(struct nfs_pgio_header *hdr)
Fred Isaman6c75dc02012-04-20 14:47:47 -0400566{
567 unsigned long bytes = 0;
568
569 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
570 goto out;
571 while (!list_empty(&hdr->pages)) {
572 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
573 struct page *page = req->wb_page;
574
575 bytes += req->wb_bytes;
576 nfs_list_remove_request(req);
577 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
578 (hdr->good_bytes < bytes)) {
579 nfs_set_pageerror(page);
580 nfs_context_set_write_error(req->wb_context, hdr->error);
581 goto remove_req;
582 }
583 if (test_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags)) {
584 nfs_mark_request_dirty(req);
585 goto next;
586 }
587 if (test_bit(NFS_IOHDR_NEED_COMMIT, &hdr->flags)) {
588 nfs_mark_request_commit(req, hdr->lseg);
589 goto next;
590 }
591remove_req:
592 nfs_inode_remove_request(req);
593next:
594 nfs_unlock_request(req);
595 nfs_end_page_writeback(page);
596 }
597out:
598 hdr->release(hdr);
599}
600
Trond Myklebust47c62562009-03-16 08:13:41 -0400601#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400602static int
603nfs_need_commit(struct nfs_inode *nfsi)
604{
Fred Isamand6d6dc72012-03-08 17:29:35 -0500605 return nfsi->ncommit > 0;
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400606}
607
Fred Isamand6d6dc72012-03-08 17:29:35 -0500608/* i_lock held by caller */
Trond Myklebust8dd37752012-03-15 17:16:40 -0400609static int
Trond Myklebust3b3be882012-03-17 11:59:30 -0400610nfs_scan_commit_list(struct list_head *src, struct list_head *dst, int max,
611 spinlock_t *lock)
Fred Isamand6d6dc72012-03-08 17:29:35 -0500612{
613 struct nfs_page *req, *tmp;
614 int ret = 0;
615
616 list_for_each_entry_safe(req, tmp, src, wb_list) {
Trond Myklebust8dd37752012-03-15 17:16:40 -0400617 if (!nfs_lock_request(req))
618 continue;
Trond Myklebust3b3be882012-03-17 11:59:30 -0400619 if (cond_resched_lock(lock))
620 list_safe_reset_next(req, tmp, wb_list);
Trond Myklebust8dd37752012-03-15 17:16:40 -0400621 nfs_request_remove_commit_list(req);
622 nfs_list_add_request(req, dst);
623 ret++;
624 if (ret == max)
625 break;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500626 }
627 return ret;
628}
Fred Isamand6d6dc72012-03-08 17:29:35 -0500629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630/*
631 * nfs_scan_commit - Scan an inode for commit requests
632 * @inode: NFS inode to scan
633 * @dst: destination list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *
635 * Moves requests from the inode's 'commit' request list.
636 * The requests are *not* checked to ensure that they form a contiguous set.
637 */
638static int
Fred Isamand6d6dc72012-03-08 17:29:35 -0500639nfs_scan_commit(struct inode *inode, struct list_head *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 struct nfs_inode *nfsi = NFS_I(inode);
Fred Isamand6d6dc72012-03-08 17:29:35 -0500642 int ret = 0;
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400643
Dave Chinner0d88f6e2011-04-12 19:18:08 +1000644 spin_lock(&inode->i_lock);
Fred Isamand6d6dc72012-03-08 17:29:35 -0500645 if (nfsi->ncommit > 0) {
Trond Myklebust8dd37752012-03-15 17:16:40 -0400646 const int max = INT_MAX;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500647
Trond Myklebust3b3be882012-03-17 11:59:30 -0400648 ret = nfs_scan_commit_list(&nfsi->commit_list, dst, max,
649 &inode->i_lock);
650 ret += pnfs_scan_commit_lists(inode, max - ret,
651 &inode->i_lock);
Fred Isamand6d6dc72012-03-08 17:29:35 -0500652 }
Dave Chinner0d88f6e2011-04-12 19:18:08 +1000653 spin_unlock(&inode->i_lock);
Trond Myklebustff778d02010-02-19 16:53:39 -0800654 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
Fred Isamand6d6dc72012-03-08 17:29:35 -0500656
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500657#else
Trond Myklebustfb8a1f12009-03-11 14:10:29 -0400658static inline int nfs_need_commit(struct nfs_inode *nfsi)
659{
660 return 0;
661}
662
Fred Isamand6d6dc72012-03-08 17:29:35 -0500663static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst)
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500664{
665 return 0;
666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*
Trond Myklebuste7d39062008-06-13 12:12:32 -0400670 * Search for an existing write request, and attempt to update
671 * it to reflect a new dirty region on a given page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 *
Trond Myklebuste7d39062008-06-13 12:12:32 -0400673 * If the attempt fails, then the existing request is flushed out
674 * to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 */
Trond Myklebuste7d39062008-06-13 12:12:32 -0400676static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
677 struct page *page,
678 unsigned int offset,
679 unsigned int bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Trond Myklebuste7d39062008-06-13 12:12:32 -0400681 struct nfs_page *req;
682 unsigned int rqend;
683 unsigned int end;
684 int error;
685
686 if (!PagePrivate(page))
687 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 end = offset + bytes;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400690 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 for (;;) {
Trond Myklebust277459d2006-12-05 00:35:35 -0500693 req = nfs_page_find_request_locked(page);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400694 if (req == NULL)
695 goto out_unlock;
Trond Myklebust277459d2006-12-05 00:35:35 -0500696
Trond Myklebuste7d39062008-06-13 12:12:32 -0400697 rqend = req->wb_offset + req->wb_bytes;
698 /*
699 * Tell the caller to flush out the request if
700 * the offsets are non-contiguous.
701 * Note: nfs_flush_incompatible() will already
702 * have flushed out requests having wrong owners.
703 */
Trond Myklebuste468bae2008-06-13 13:25:22 -0400704 if (offset > rqend
Trond Myklebuste7d39062008-06-13 12:12:32 -0400705 || end < req->wb_offset)
706 goto out_flushme;
707
Fred Isaman9994b622012-03-08 17:29:34 -0500708 if (nfs_lock_request_dontget(req))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Trond Myklebuste7d39062008-06-13 12:12:32 -0400711 /* The request is locked, so wait and then retry */
Trond Myklebust587142f2007-07-02 09:57:54 -0400712 spin_unlock(&inode->i_lock);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400713 error = nfs_wait_on_request(req);
714 nfs_release_request(req);
715 if (error != 0)
716 goto out_err;
717 spin_lock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
720 /* Okay, the request matches. Update the region */
721 if (offset < req->wb_offset) {
722 req->wb_offset = offset;
723 req->wb_pgbase = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (end > rqend)
726 req->wb_bytes = end - req->wb_offset;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400727 else
728 req->wb_bytes = rqend - req->wb_offset;
729out_unlock:
730 spin_unlock(&inode->i_lock);
Fred Isamanca138f32012-04-05 15:26:36 -0400731 if (req)
732 nfs_clear_request_commit(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400733 return req;
734out_flushme:
735 spin_unlock(&inode->i_lock);
736 nfs_release_request(req);
737 error = nfs_wb_page(inode, page);
738out_err:
739 return ERR_PTR(error);
740}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Trond Myklebuste7d39062008-06-13 12:12:32 -0400742/*
743 * Try to update an existing write request, or create one if there is none.
744 *
745 * Note: Should always be called with the Page Lock held to prevent races
746 * if we have to add a new request. Also assumes that the caller has
747 * already called nfs_flush_incompatible() if necessary.
748 */
749static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
750 struct page *page, unsigned int offset, unsigned int bytes)
751{
752 struct inode *inode = page->mapping->host;
753 struct nfs_page *req;
Trond Myklebuste7d39062008-06-13 12:12:32 -0400754
755 req = nfs_try_to_update_request(inode, page, offset, bytes);
756 if (req != NULL)
757 goto out;
758 req = nfs_create_request(ctx, inode, page, offset, bytes);
759 if (IS_ERR(req))
760 goto out;
Fred Isamand6d6dc72012-03-08 17:29:35 -0500761 nfs_inode_add_request(inode, req);
Trond Myklebustefc91ed2008-06-10 18:31:00 -0400762out:
Trond Myklebust61e930a2007-10-18 17:08:05 -0400763 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Trond Myklebuste7d39062008-06-13 12:12:32 -0400766static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
767 unsigned int offset, unsigned int count)
768{
769 struct nfs_page *req;
770
771 req = nfs_setup_write_request(ctx, page, offset, count);
772 if (IS_ERR(req))
773 return PTR_ERR(req);
774 /* Update file length */
775 nfs_grow_file(page, offset, count);
776 nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
Trond Myklebusta6305dd2010-04-09 19:07:08 -0400777 nfs_mark_request_dirty(req);
Fred Isaman9994b622012-03-08 17:29:34 -0500778 nfs_unlock_request(req);
Trond Myklebuste7d39062008-06-13 12:12:32 -0400779 return 0;
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782int nfs_flush_incompatible(struct file *file, struct page *page)
783{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400784 struct nfs_open_context *ctx = nfs_file_open_context(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 struct nfs_page *req;
Trond Myklebust1a545332006-12-05 00:35:40 -0500786 int do_flush, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /*
788 * Look for a request corresponding to this page. If there
789 * is one, and it belongs to another file, we flush it out
790 * before we try to copy anything into the page. Do this
791 * due to the lack of an ACCESS-type call in NFSv2.
792 * Also do the same if we find a request from an existing
793 * dropped page.
794 */
Trond Myklebust1a545332006-12-05 00:35:40 -0500795 do {
796 req = nfs_page_find_request(page);
797 if (req == NULL)
798 return 0;
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400799 do_flush = req->wb_page != page || req->wb_context != ctx ||
800 req->wb_lock_context->lockowner != current->files ||
801 req->wb_lock_context->pid != current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 nfs_release_request(req);
Trond Myklebust1a545332006-12-05 00:35:40 -0500803 if (!do_flush)
804 return 0;
805 status = nfs_wb_page(page->mapping->host, page);
806 } while (status == 0);
807 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810/*
Trond Myklebust5d47a352008-02-07 17:24:07 -0500811 * If the page cache is marked as unsafe or invalid, then we can't rely on
812 * the PageUptodate() flag. In this case, we will need to turn off
813 * write optimisations that depend on the page contents being correct.
814 */
815static int nfs_write_pageuptodate(struct page *page, struct inode *inode)
816{
817 return PageUptodate(page) &&
818 !(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA));
819}
820
821/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 * Update and possibly write a cached page of an NFS file.
823 *
824 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
825 * things with a page scheduled for an RPC call (e.g. invalidate it).
826 */
827int nfs_updatepage(struct file *file, struct page *page,
828 unsigned int offset, unsigned int count)
829{
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400830 struct nfs_open_context *ctx = nfs_file_open_context(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 int status = 0;
833
Chuck Lever91d5b472006-03-20 13:44:14 -0500834 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
835
Chuck Lever48186c72008-06-11 17:56:05 -0400836 dprintk("NFS: nfs_updatepage(%s/%s %d@%lld)\n",
Josef "Jeff" Sipek01cce932006-12-08 02:36:40 -0800837 file->f_path.dentry->d_parent->d_name.name,
838 file->f_path.dentry->d_name.name, count,
Chuck Lever48186c72008-06-11 17:56:05 -0400839 (long long)(page_offset(page) + offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* If we're not using byte range locks, and we know the page
Trond Myklebust5d47a352008-02-07 17:24:07 -0500842 * is up to date, it may be more efficient to extend the write
843 * to cover the entire page in order to avoid fragmentation
844 * inefficiencies.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
Trond Myklebust5d47a352008-02-07 17:24:07 -0500846 if (nfs_write_pageuptodate(page, inode) &&
847 inode->i_flock == NULL &&
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +0100848 !(file->f_flags & O_DSYNC)) {
Trond Myklebust49a70f22006-12-05 00:35:38 -0500849 count = max(count + offset, nfs_page_length(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
Trond Myklebuste21195a2006-12-05 00:35:39 -0500853 status = nfs_writepage_setup(ctx, page, offset, count);
Trond Myklebust03fa9e82008-06-05 16:02:35 -0400854 if (status < 0)
855 nfs_set_pageerror(page);
Trond Myklebust59b7c052011-10-17 18:22:55 -0700856 else
857 __set_page_dirty_nobuffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Chuck Lever48186c72008-06-11 17:56:05 -0400859 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 status, (long long)i_size_read(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return status;
862}
863
Trond Myklebust3ff75762007-07-14 15:40:00 -0400864static int flush_task_priority(int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
866 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
867 case FLUSH_HIGHPRI:
868 return RPC_PRIORITY_HIGH;
869 case FLUSH_LOWPRI:
870 return RPC_PRIORITY_LOW;
871 }
872 return RPC_PRIORITY_NORMAL;
873}
874
Fred Isamanc5996c42012-04-20 14:47:41 -0400875int nfs_initiate_write(struct rpc_clnt *clnt,
876 struct nfs_write_data *data,
Andy Adamsond138d5d2011-03-03 15:13:41 +0000877 const struct rpc_call_ops *call_ops,
878 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Fred Isamancd841602012-04-20 14:47:44 -0400880 struct inode *inode = data->header->inode;
Trond Myklebust3ff75762007-07-14 15:40:00 -0400881 int priority = flush_task_priority(how);
Trond Myklebust07737692007-10-25 18:42:54 -0400882 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400883 struct rpc_message msg = {
884 .rpc_argp = &data->args,
885 .rpc_resp = &data->res,
Fred Isamancd841602012-04-20 14:47:44 -0400886 .rpc_cred = data->header->cred,
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400887 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400888 struct rpc_task_setup task_setup_data = {
Andy Adamsond138d5d2011-03-03 15:13:41 +0000889 .rpc_client = clnt,
Trond Myklebust07737692007-10-25 18:42:54 -0400890 .task = &data->task,
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400891 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400892 .callback_ops = call_ops,
893 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500894 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -0400895 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -0400896 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -0400897 };
Trond Myklebust2c61be02010-04-09 19:54:50 -0400898 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Andy Adamsond138d5d2011-03-03 15:13:41 +0000900 /* Set up the initial task struct. */
901 NFS_PROTO(inode)->write_setup(data, &msg);
902
903 dprintk("NFS: %5u initiated write call "
904 "(req %s/%lld, %u bytes @ offset %llu)\n",
905 data->task.tk_pid,
906 inode->i_sb->s_id,
907 (long long)NFS_FILEID(inode),
908 data->args.count,
909 (unsigned long long)data->args.offset);
910
911 task = rpc_run_task(&task_setup_data);
912 if (IS_ERR(task)) {
913 ret = PTR_ERR(task);
914 goto out;
915 }
916 if (how & FLUSH_SYNC) {
917 ret = rpc_wait_for_completion_task(task);
918 if (ret == 0)
919 ret = task->tk_status;
920 }
921 rpc_put_task(task);
922out:
923 return ret;
924}
Fred Isamana69aef12011-03-03 15:13:47 +0000925EXPORT_SYMBOL_GPL(nfs_initiate_write);
Andy Adamsond138d5d2011-03-03 15:13:41 +0000926
927/*
928 * Set up the argument/result storage required for the RPC call.
929 */
Fred Isaman6c75dc02012-04-20 14:47:47 -0400930static void nfs_write_rpcsetup(struct nfs_write_data *data,
Andy Adamsond138d5d2011-03-03 15:13:41 +0000931 unsigned int count, unsigned int offset,
932 int how)
933{
Fred Isaman6c75dc02012-04-20 14:47:47 -0400934 struct nfs_page *req = data->header->req;
Andy Adamsond138d5d2011-03-03 15:13:41 +0000935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* Set up the RPC argument and reply structs
937 * NB: take care not to mess about with data->commit et al. */
938
Fred Isaman6c75dc02012-04-20 14:47:47 -0400939 data->args.fh = NFS_FH(data->header->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 data->args.offset = req_offset(req) + offset;
Boaz Harrosh2bea0382011-06-16 11:35:46 -0400941 /* pnfs_set_layoutcommit needs this */
942 data->mds_offset = data->args.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 data->args.pgbase = req->wb_pgbase + offset;
Fred Isaman30dd3742012-04-20 14:47:45 -0400944 data->args.pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500946 data->args.context = get_nfs_open_context(req->wb_context);
Trond Myklebustf11ac8d2010-06-25 16:35:53 -0400947 data->args.lock_context = req->wb_lock_context;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400948 data->args.stable = NFS_UNSTABLE;
Trond Myklebust87ed5eb2011-07-12 13:42:01 -0400949 switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
950 case 0:
951 break;
952 case FLUSH_COND_STABLE:
Fred Isaman6c75dc02012-04-20 14:47:47 -0400953 if (nfs_need_commit(NFS_I(data->header->inode)))
Trond Myklebust87ed5eb2011-07-12 13:42:01 -0400954 break;
955 default:
956 data->args.stable = NFS_FILE_SYNC;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 data->res.fattr = &data->fattr;
960 data->res.count = count;
961 data->res.verf = &data->verf;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400962 nfs_fattr_init(&data->fattr);
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400963}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400965static int nfs_do_write(struct nfs_write_data *data,
966 const struct rpc_call_ops *call_ops,
Trond Myklebust6e4efd52011-07-12 13:42:02 -0400967 int how)
968{
Fred Isamancd841602012-04-20 14:47:44 -0400969 struct inode *inode = data->header->inode;
Andy Adamson0382b742011-03-03 15:13:45 +0000970
Fred Isamanc5996c42012-04-20 14:47:41 -0400971 return nfs_initiate_write(NFS_CLIENT(inode), data, call_ops, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Trond Myklebust275acaa2011-07-12 13:42:02 -0400974static int nfs_do_multiple_writes(struct list_head *head,
975 const struct rpc_call_ops *call_ops,
Trond Myklebust275acaa2011-07-12 13:42:02 -0400976 int how)
977{
978 struct nfs_write_data *data;
979 int ret = 0;
980
981 while (!list_empty(head)) {
982 int ret2;
983
Fred Isaman6c75dc02012-04-20 14:47:47 -0400984 data = list_first_entry(head, struct nfs_write_data, list);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400985 list_del_init(&data->list);
986
Trond Myklebustdce81292011-07-13 15:59:19 -0400987 ret2 = nfs_do_write(data, call_ops, how);
Trond Myklebust275acaa2011-07-12 13:42:02 -0400988 if (ret == 0)
989 ret = ret2;
990 }
991 return ret;
992}
993
Fred6d884e82008-03-19 11:24:38 -0400994/* If a nfs_flush_* function fails, it should remove reqs from @head and
995 * call this on each, which will prepare them to be retried on next
996 * writeback using standard nfs.
997 */
998static void nfs_redirty_request(struct nfs_page *req)
999{
Trond Myklebusta6305dd2010-04-09 19:07:08 -04001000 struct page *page = req->wb_page;
1001
Fred6d884e82008-03-19 11:24:38 -04001002 nfs_mark_request_dirty(req);
Fred Isaman9994b622012-03-08 17:29:34 -05001003 nfs_unlock_request(req);
Trond Myklebusta6305dd2010-04-09 19:07:08 -04001004 nfs_end_page_writeback(page);
Fred6d884e82008-03-19 11:24:38 -04001005}
1006
Fred Isaman061ae2e2012-04-20 14:47:48 -04001007static void nfs_async_write_error(struct list_head *head)
Fred Isaman6c75dc02012-04-20 14:47:47 -04001008{
1009 struct nfs_page *req;
1010
1011 while (!list_empty(head)) {
1012 req = nfs_list_entry(head->next);
1013 nfs_list_remove_request(req);
1014 nfs_redirty_request(req);
1015 }
1016}
1017
Fred Isaman061ae2e2012-04-20 14:47:48 -04001018static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1019 .error_cleanup = nfs_async_write_error,
1020 .completion = nfs_write_completion,
1021};
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023/*
1024 * Generate multiple small requests to write out a single
1025 * contiguous dirty area on one page.
1026 */
Fred Isaman6c75dc02012-04-20 14:47:47 -04001027static int nfs_flush_multi(struct nfs_pageio_descriptor *desc,
1028 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Fred Isaman6c75dc02012-04-20 14:47:47 -04001030 struct nfs_page *req = hdr->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 struct page *page = req->wb_page;
1032 struct nfs_write_data *data;
Trond Myklebustd0979712011-07-12 13:42:02 -04001033 size_t wsize = desc->pg_bsize, nbytes;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001034 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 int requests = 0;
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001036 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 nfs_list_remove_request(req);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001039 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Trond Myklebustb31268a2011-03-21 17:02:00 -04001041 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
1042 (desc->pg_moreio || NFS_I(desc->pg_inode)->ncommit ||
1043 desc->pg_count > wsize))
1044 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
1045
1046
Trond Myklebust275acaa2011-07-12 13:42:02 -04001047 offset = 0;
Fred Isamanc76069b2011-03-03 15:13:48 +00001048 nbytes = desc->pg_count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001049 do {
1050 size_t len = min(nbytes, wsize);
1051
Fred Isaman6c75dc02012-04-20 14:47:47 -04001052 data = nfs_writedata_alloc(hdr, 1);
1053 if (!data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 goto out_bad;
Fred Isaman30dd3742012-04-20 14:47:45 -04001055 data->pages.pagevec[0] = page;
Fred Isaman6c75dc02012-04-20 14:47:47 -04001056 nfs_write_rpcsetup(data, len, offset, desc->pg_ioflags);
1057 list_add(&data->list, &hdr->rpc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001059 nbytes -= len;
Trond Myklebust275acaa2011-07-12 13:42:02 -04001060 offset += len;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -07001061 } while (nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 atomic_set(&req->wb_complete, requests);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001063 desc->pg_rpc_callops = &nfs_write_common_ops;
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001064 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066out_bad:
Fred Isaman6c75dc02012-04-20 14:47:47 -04001067 while (!list_empty(&hdr->rpc_list)) {
1068 data = list_first_entry(&hdr->rpc_list, struct nfs_write_data, list);
Trond Myklebust6e4efd52011-07-12 13:42:02 -04001069 list_del(&data->list);
Fred Isaman8ccd2712012-04-20 14:47:35 -04001070 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Fred Isaman061ae2e2012-04-20 14:47:48 -04001072 desc->pg_completion_ops->error_cleanup(&hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return -ENOMEM;
1074}
1075
1076/*
1077 * Create an RPC task for the given write request and kick it.
1078 * The page must have been locked by the caller.
1079 *
1080 * It may happen that the page we're passed is not marked dirty.
1081 * This is the case if nfs_updatepage detects a conflicting request
1082 * that has been written but not committed.
1083 */
Fred Isaman6c75dc02012-04-20 14:47:47 -04001084static int nfs_flush_one(struct nfs_pageio_descriptor *desc,
1085 struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 struct nfs_page *req;
1088 struct page **pages;
1089 struct nfs_write_data *data;
Fred Isamanc76069b2011-03-03 15:13:48 +00001090 struct list_head *head = &desc->pg_list;
Peng Tao3b609182011-07-15 03:33:42 -04001091 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Fred Isaman6c75dc02012-04-20 14:47:47 -04001093 data = nfs_writedata_alloc(hdr, nfs_page_array_len(desc->pg_base,
1094 desc->pg_count));
1095 if (!data) {
Fred Isaman061ae2e2012-04-20 14:47:48 -04001096 desc->pg_completion_ops->error_cleanup(head);
Fred Isaman44b83792011-03-03 15:13:44 +00001097 ret = -ENOMEM;
1098 goto out;
1099 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001100
Fred Isaman30dd3742012-04-20 14:47:45 -04001101 pages = data->pages.pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 while (!list_empty(head)) {
1103 req = nfs_list_entry(head->next);
1104 nfs_list_remove_request(req);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001105 nfs_list_add_request(req, &hdr->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Trond Myklebustb31268a2011-03-21 17:02:00 -04001109 if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
1110 (desc->pg_moreio || NFS_I(desc->pg_inode)->ncommit))
1111 desc->pg_ioflags &= ~FLUSH_COND_STABLE;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 /* Set up the argument struct */
Fred Isaman6c75dc02012-04-20 14:47:47 -04001114 nfs_write_rpcsetup(data, desc->pg_count, 0, desc->pg_ioflags);
1115 list_add(&data->list, &hdr->rpc_list);
1116 desc->pg_rpc_callops = &nfs_write_common_ops;
Fred Isaman44b83792011-03-03 15:13:44 +00001117out:
Fred Isaman44b83792011-03-03 15:13:44 +00001118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Fred Isaman6c75dc02012-04-20 14:47:47 -04001121int nfs_generic_flush(struct nfs_pageio_descriptor *desc,
1122 struct nfs_pgio_header *hdr)
Trond Myklebustdce81292011-07-13 15:59:19 -04001123{
1124 if (desc->pg_bsize < PAGE_CACHE_SIZE)
Fred Isaman6c75dc02012-04-20 14:47:47 -04001125 return nfs_flush_multi(desc, hdr);
1126 return nfs_flush_one(desc, hdr);
Trond Myklebustdce81292011-07-13 15:59:19 -04001127}
1128
1129static int nfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
Trond Myklebust1751c362011-06-10 13:30:23 -04001130{
Fred Isaman6c75dc02012-04-20 14:47:47 -04001131 struct nfs_write_header *whdr;
1132 struct nfs_pgio_header *hdr;
Trond Myklebust275acaa2011-07-12 13:42:02 -04001133 int ret;
1134
Fred Isaman6c75dc02012-04-20 14:47:47 -04001135 whdr = nfs_writehdr_alloc();
1136 if (!whdr) {
Fred Isaman061ae2e2012-04-20 14:47:48 -04001137 desc->pg_completion_ops->error_cleanup(&hdr->pages);
Fred Isaman6c75dc02012-04-20 14:47:47 -04001138 return -ENOMEM;
1139 }
1140 hdr = &whdr->header;
1141 nfs_pgheader_init(desc, hdr, nfs_writehdr_free);
1142 atomic_inc(&hdr->refcnt);
1143 ret = nfs_generic_flush(desc, hdr);
Trond Myklebust50828d72011-07-12 13:42:02 -04001144 if (ret == 0)
Fred Isaman6c75dc02012-04-20 14:47:47 -04001145 ret = nfs_do_multiple_writes(&hdr->rpc_list,
1146 desc->pg_rpc_callops,
1147 desc->pg_ioflags);
1148 else
1149 set_bit(NFS_IOHDR_REDO, &hdr->flags);
1150 if (atomic_dec_and_test(&hdr->refcnt))
Fred Isaman061ae2e2012-04-20 14:47:48 -04001151 hdr->completion_ops->completion(hdr);
Trond Myklebust275acaa2011-07-12 13:42:02 -04001152 return ret;
Trond Myklebust1751c362011-06-10 13:30:23 -04001153}
Trond Myklebust1751c362011-06-10 13:30:23 -04001154
1155static const struct nfs_pageio_ops nfs_pageio_write_ops = {
1156 .pg_test = nfs_generic_pg_test,
1157 .pg_doio = nfs_generic_pg_writepages,
1158};
1159
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001160void nfs_pageio_init_write_mds(struct nfs_pageio_descriptor *pgio,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001161 struct inode *inode, int ioflags,
1162 const struct nfs_pgio_completion_ops *compl_ops)
Trond Myklebust1751c362011-06-10 13:30:23 -04001163{
Fred Isaman061ae2e2012-04-20 14:47:48 -04001164 nfs_pageio_init(pgio, inode, &nfs_pageio_write_ops, compl_ops,
Trond Myklebust1751c362011-06-10 13:30:23 -04001165 NFS_SERVER(inode)->wsize, ioflags);
1166}
1167
Trond Myklebustdce81292011-07-13 15:59:19 -04001168void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1169{
1170 pgio->pg_ops = &nfs_pageio_write_ops;
1171 pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1172}
Trond Myklebust1f945352011-07-13 15:59:57 -04001173EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
Trond Myklebustdce81292011-07-13 15:59:19 -04001174
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001175static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
Fred Isaman061ae2e2012-04-20 14:47:48 -04001176 struct inode *inode, int ioflags,
1177 const struct nfs_pgio_completion_ops *compl_ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178{
Fred Isaman061ae2e2012-04-20 14:47:48 -04001179 if (!pnfs_pageio_init_write(pgio, inode, ioflags, compl_ops))
1180 nfs_pageio_init_write_mds(pgio, inode, ioflags, compl_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Andy Adamsondef6ed72009-04-01 09:22:26 -04001183void nfs_write_prepare(struct rpc_task *task, void *calldata)
1184{
1185 struct nfs_write_data *data = calldata;
Fred Isamancd841602012-04-20 14:47:44 -04001186 NFS_PROTO(data->header->inode)->write_rpc_prepare(task, data);
Andy Adamsondef6ed72009-04-01 09:22:26 -04001187}
Andy Adamsondef6ed72009-04-01 09:22:26 -04001188
Fred Isaman0b7c0152012-04-20 14:47:39 -04001189void nfs_commit_prepare(struct rpc_task *task, void *calldata)
1190{
1191 struct nfs_commit_data *data = calldata;
1192
1193 NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
1194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/*
1197 * Handle a write reply that flushes a whole page.
1198 *
1199 * FIXME: There is an inherent race with invalidate_inode_pages and
1200 * writebacks since the page->count is kept > 1 for as long
1201 * as the page has a write request pending.
1202 */
Fred Isaman6c75dc02012-04-20 14:47:47 -04001203static void nfs_writeback_done_common(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Trond Myklebust788e7a82006-03-20 13:44:27 -05001205 struct nfs_write_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001207 nfs_writeback_done(task, data);
1208}
1209
Fred Isaman6c75dc02012-04-20 14:47:47 -04001210static void nfs_writeback_release_common(void *calldata)
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001211{
1212 struct nfs_write_data *data = calldata;
Fred Isamancd841602012-04-20 14:47:44 -04001213 struct nfs_pgio_header *hdr = data->header;
Trond Myklebuste2fecb22012-01-06 08:57:46 -05001214 int status = data->task.tk_status;
Fred Isaman6c75dc02012-04-20 14:47:47 -04001215 struct nfs_page *req = hdr->req;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001216
Fred Isaman6c75dc02012-04-20 14:47:47 -04001217 if ((status >= 0) && nfs_write_need_commit(data)) {
1218 spin_lock(&hdr->lock);
1219 if (test_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags))
1220 ; /* Do nothing */
1221 else if (!test_and_set_bit(NFS_IOHDR_NEED_COMMIT, &hdr->flags))
Trond Myklebust8e821ca2007-04-20 16:12:34 -04001222 memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
Fred Isaman6c75dc02012-04-20 14:47:47 -04001223 else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf)))
1224 set_bit(NFS_IOHDR_NEED_RESCHED, &hdr->flags);
1225 spin_unlock(&hdr->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
Fred Isamancd841602012-04-20 14:47:44 -04001227 nfs_writedata_release(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Fred Isaman6c75dc02012-04-20 14:47:47 -04001230static const struct rpc_call_ops nfs_write_common_ops = {
Andy Adamsondef6ed72009-04-01 09:22:26 -04001231 .rpc_call_prepare = nfs_write_prepare,
Fred Isaman6c75dc02012-04-20 14:47:47 -04001232 .rpc_call_done = nfs_writeback_done_common,
1233 .rpc_release = nfs_writeback_release_common,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001234};
1235
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237/*
1238 * This function is called when the WRITE call is complete.
1239 */
Fred Isaman13602892011-02-11 15:42:38 +00001240void nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 struct nfs_writeargs *argp = &data->args;
1243 struct nfs_writeres *resp = &data->res;
Fred Isamancd841602012-04-20 14:47:44 -04001244 struct inode *inode = data->header->inode;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001245 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Chuck Levera3f565b2007-01-31 12:14:01 -05001247 dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 task->tk_pid, task->tk_status);
1249
Chuck Leverf551e442006-09-20 14:33:04 -04001250 /*
1251 * ->write_done will attempt to use post-op attributes to detect
1252 * conflicting writes by other clients. A strict interpretation
1253 * of close-to-open would allow us to continue caching even if
1254 * another writer had changed the file, but some applications
1255 * depend on tighter cache coherency when writing.
1256 */
Fred Isamancd841602012-04-20 14:47:44 -04001257 status = NFS_PROTO(inode)->write_done(task, data);
Trond Myklebust788e7a82006-03-20 13:44:27 -05001258 if (status != 0)
Fred Isaman13602892011-02-11 15:42:38 +00001259 return;
Fred Isamancd841602012-04-20 14:47:44 -04001260 nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
Chuck Lever91d5b472006-03-20 13:44:14 -05001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
1263 if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
1264 /* We tried a write call, but the server did not
1265 * commit data to stable storage even though we
1266 * requested it.
1267 * Note: There is a known bug in Tru64 < 5.0 in which
1268 * the server reports NFS_DATA_SYNC, but performs
1269 * NFS_FILE_SYNC. We therefore implement this checking
1270 * as a dprintk() in order to avoid filling syslog.
1271 */
1272 static unsigned long complain;
1273
Fred Isamana69aef12011-03-03 15:13:47 +00001274 /* Note this will print the MDS for a DS write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (time_before(complain, jiffies)) {
Chuck Lever48186c72008-06-11 17:56:05 -04001276 dprintk("NFS: faulty NFS server %s:"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 " (committed = %d) != (stable = %d)\n",
Fred Isamancd841602012-04-20 14:47:44 -04001278 NFS_SERVER(inode)->nfs_client->cl_hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 resp->verf->committed, argp->stable);
1280 complain = jiffies + 300 * HZ;
1281 }
1282 }
1283#endif
Fred Isaman6c75dc02012-04-20 14:47:47 -04001284 if (task->tk_status < 0)
1285 nfs_set_pgio_error(data->header, task->tk_status, argp->offset);
1286 else if (resp->count < argp->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 static unsigned long complain;
1288
Fred Isaman6c75dc02012-04-20 14:47:47 -04001289 /* This a short write! */
Fred Isamancd841602012-04-20 14:47:44 -04001290 nfs_inc_stats(inode, NFSIOS_SHORTWRITE);
Chuck Lever91d5b472006-03-20 13:44:14 -05001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /* Has the server at least made some progress? */
Fred Isaman6c75dc02012-04-20 14:47:47 -04001293 if (resp->count == 0) {
1294 if (time_before(complain, jiffies)) {
1295 printk(KERN_WARNING
1296 "NFS: Server wrote zero bytes, expected %u.\n",
1297 argp->count);
1298 complain = jiffies + 300 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001300 nfs_set_pgio_error(data->header, -EIO, argp->offset);
1301 task->tk_status = -EIO;
Fred Isaman13602892011-02-11 15:42:38 +00001302 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001304 /* Was this an NFSv2 write or an NFSv3 stable write? */
1305 if (resp->verf->committed != NFS_UNSTABLE) {
1306 /* Resend from where the server left off */
1307 data->mds_offset += resp->count;
1308 argp->offset += resp->count;
1309 argp->pgbase += resp->count;
1310 argp->count -= resp->count;
1311 } else {
1312 /* Resend as a stable write in order to avoid
1313 * headaches in the case of a server crash.
1314 */
1315 argp->stable = NFS_FILE_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Fred Isaman6c75dc02012-04-20 14:47:47 -04001317 rpc_restart_call_prepare(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
1321
1322#if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
Trond Myklebust71d0a612010-04-22 15:35:57 -04001323static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
1324{
Trond Myklebustb8413f92011-03-21 15:37:01 -04001325 int ret;
1326
Trond Myklebust71d0a612010-04-22 15:35:57 -04001327 if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
1328 return 1;
Trond Myklebustb8413f92011-03-21 15:37:01 -04001329 if (!may_wait)
1330 return 0;
1331 ret = out_of_line_wait_on_bit_lock(&nfsi->flags,
1332 NFS_INO_COMMIT,
1333 nfs_wait_bit_killable,
1334 TASK_KILLABLE);
1335 return (ret < 0) ? ret : 1;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001336}
1337
Fred Isamane0c2b382011-03-23 13:27:53 +00001338void nfs_commit_clear_lock(struct nfs_inode *nfsi)
Trond Myklebust71d0a612010-04-22 15:35:57 -04001339{
1340 clear_bit(NFS_INO_COMMIT, &nfsi->flags);
1341 smp_mb__after_clear_bit();
1342 wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
1343}
Fred Isamane0c2b382011-03-23 13:27:53 +00001344EXPORT_SYMBOL_GPL(nfs_commit_clear_lock);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001345
Fred Isaman0b7c0152012-04-20 14:47:39 -04001346void nfs_commitdata_release(struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001348 put_nfs_open_context(data->context);
1349 nfs_commit_free(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
Fred Isamane0c2b382011-03-23 13:27:53 +00001351EXPORT_SYMBOL_GPL(nfs_commitdata_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Fred Isaman0b7c0152012-04-20 14:47:39 -04001353int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
Fred Isaman9ace33c2011-03-23 13:27:45 +00001354 const struct rpc_call_ops *call_ops,
1355 int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Trond Myklebust07737692007-10-25 18:42:54 -04001357 struct rpc_task *task;
Fred Isaman9ace33c2011-03-23 13:27:45 +00001358 int priority = flush_task_priority(how);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001359 struct rpc_message msg = {
1360 .rpc_argp = &data->args,
1361 .rpc_resp = &data->res,
Fred Isaman9ace33c2011-03-23 13:27:45 +00001362 .rpc_cred = data->cred,
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001363 };
Trond Myklebust84115e12007-07-14 15:39:59 -04001364 struct rpc_task_setup task_setup_data = {
Trond Myklebust07737692007-10-25 18:42:54 -04001365 .task = &data->task,
Fred Isaman9ace33c2011-03-23 13:27:45 +00001366 .rpc_client = clnt,
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001367 .rpc_message = &msg,
Fred Isaman9ace33c2011-03-23 13:27:45 +00001368 .callback_ops = call_ops,
Trond Myklebust84115e12007-07-14 15:39:59 -04001369 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -05001370 .workqueue = nfsiod_workqueue,
Trond Myklebust2c61be02010-04-09 19:54:50 -04001371 .flags = RPC_TASK_ASYNC,
Trond Myklebust3ff75762007-07-14 15:40:00 -04001372 .priority = priority,
Trond Myklebust84115e12007-07-14 15:39:59 -04001373 };
Trond Myklebust788e7a82006-03-20 13:44:27 -05001374 /* Set up the initial task struct. */
Fred Isaman9ace33c2011-03-23 13:27:45 +00001375 NFS_PROTO(data->inode)->commit_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Chuck Levera3f565b2007-01-31 12:14:01 -05001377 dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
Trond Myklebustbdc7f022007-07-14 15:40:00 -04001378
Trond Myklebust07737692007-10-25 18:42:54 -04001379 task = rpc_run_task(&task_setup_data);
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001380 if (IS_ERR(task))
1381 return PTR_ERR(task);
Jeff Laytond2224e72011-03-06 17:14:13 +00001382 if (how & FLUSH_SYNC)
1383 rpc_wait_for_completion_task(task);
Trond Myklebustdbae4c72008-04-14 14:54:53 -04001384 rpc_put_task(task);
1385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
Fred Isamane0c2b382011-03-23 13:27:53 +00001387EXPORT_SYMBOL_GPL(nfs_initiate_commit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389/*
Fred Isaman9ace33c2011-03-23 13:27:45 +00001390 * Set up the argument/result storage required for the RPC call.
1391 */
Fred Isaman0b7c0152012-04-20 14:47:39 -04001392void nfs_init_commit(struct nfs_commit_data *data,
Fred Isaman988b6dc2011-03-23 13:27:52 +00001393 struct list_head *head,
1394 struct pnfs_layout_segment *lseg)
Fred Isaman9ace33c2011-03-23 13:27:45 +00001395{
1396 struct nfs_page *first = nfs_list_entry(head->next);
Al Viro3d4ff432011-06-22 18:40:12 -04001397 struct inode *inode = first->wb_context->dentry->d_inode;
Fred Isaman9ace33c2011-03-23 13:27:45 +00001398
1399 /* Set up the RPC argument and reply structs
1400 * NB: take care not to mess about with data->commit et al. */
1401
1402 list_splice_init(head, &data->pages);
1403
1404 data->inode = inode;
1405 data->cred = first->wb_context->cred;
Fred Isaman988b6dc2011-03-23 13:27:52 +00001406 data->lseg = lseg; /* reference transferred */
Fred Isaman9ace33c2011-03-23 13:27:45 +00001407 data->mds_ops = &nfs_commit_ops;
1408
1409 data->args.fh = NFS_FH(data->inode);
1410 /* Note: we always request a commit of the entire inode */
1411 data->args.offset = 0;
1412 data->args.count = 0;
Fred Isaman0b7c0152012-04-20 14:47:39 -04001413 data->context = get_nfs_open_context(first->wb_context);
Fred Isaman9ace33c2011-03-23 13:27:45 +00001414 data->res.fattr = &data->fattr;
1415 data->res.verf = &data->verf;
1416 nfs_fattr_init(&data->fattr);
1417}
Fred Isamane0c2b382011-03-23 13:27:53 +00001418EXPORT_SYMBOL_GPL(nfs_init_commit);
Fred Isaman9ace33c2011-03-23 13:27:45 +00001419
Fred Isamane0c2b382011-03-23 13:27:53 +00001420void nfs_retry_commit(struct list_head *page_list,
Fred Isamana861a1e2011-03-23 13:27:51 +00001421 struct pnfs_layout_segment *lseg)
Fred Isaman64bfeb42011-03-23 13:27:47 +00001422{
1423 struct nfs_page *req;
1424
1425 while (!list_empty(page_list)) {
1426 req = nfs_list_entry(page_list->next);
1427 nfs_list_remove_request(req);
Fred Isamana861a1e2011-03-23 13:27:51 +00001428 nfs_mark_request_commit(req, lseg);
Fred Isaman64bfeb42011-03-23 13:27:47 +00001429 dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
1430 dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
1431 BDI_RECLAIMABLE);
Fred Isaman9994b622012-03-08 17:29:34 -05001432 nfs_unlock_request(req);
Fred Isaman64bfeb42011-03-23 13:27:47 +00001433 }
1434}
Fred Isamane0c2b382011-03-23 13:27:53 +00001435EXPORT_SYMBOL_GPL(nfs_retry_commit);
Fred Isaman64bfeb42011-03-23 13:27:47 +00001436
Fred Isaman9ace33c2011-03-23 13:27:45 +00001437/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 * Commit dirty pages
1439 */
1440static int
Chuck Lever40859d72005-11-30 18:09:02 -05001441nfs_commit_list(struct inode *inode, struct list_head *head, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001443 struct nfs_commit_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001445 data = nfs_commitdata_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if (!data)
1448 goto out_bad;
1449
1450 /* Set up the argument struct */
Fred Isaman988b6dc2011-03-23 13:27:52 +00001451 nfs_init_commit(data, head, NULL);
Fred Isaman0b7c0152012-04-20 14:47:39 -04001452 return nfs_initiate_commit(NFS_CLIENT(inode), data, data->mds_ops, how);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 out_bad:
Fred Isamana861a1e2011-03-23 13:27:51 +00001454 nfs_retry_commit(head, NULL);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001455 nfs_commit_clear_lock(NFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return -ENOMEM;
1457}
1458
1459/*
1460 * COMMIT call returned
1461 */
Trond Myklebust788e7a82006-03-20 13:44:27 -05001462static void nfs_commit_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001464 struct nfs_commit_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Chuck Levera3f565b2007-01-31 12:14:01 -05001466 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 task->tk_pid, task->tk_status);
1468
Trond Myklebust788e7a82006-03-20 13:44:27 -05001469 /* Call the NFS version-specific code */
Trond Myklebustc0d0e962011-04-12 12:29:15 -04001470 NFS_PROTO(data->inode)->commit_done(task, data);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001471}
1472
Fred Isaman0b7c0152012-04-20 14:47:39 -04001473void nfs_commit_release_pages(struct nfs_commit_data *data)
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001474{
Fred Isaman5917ce82011-03-23 13:27:48 +00001475 struct nfs_page *req;
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001476 int status = data->task.tk_status;
Trond Myklebust788e7a82006-03-20 13:44:27 -05001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 while (!list_empty(&data->pages)) {
1479 req = nfs_list_entry(data->pages.next);
1480 nfs_list_remove_request(req);
Fred Isamand6d6dc72012-03-08 17:29:35 -05001481 nfs_clear_page_commit(req->wb_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Chuck Lever48186c72008-06-11 17:56:05 -04001483 dprintk("NFS: commit (%s/%lld %d@%lld)",
Al Viro3d4ff432011-06-22 18:40:12 -04001484 req->wb_context->dentry->d_sb->s_id,
1485 (long long)NFS_FILEID(req->wb_context->dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 req->wb_bytes,
1487 (long long)req_offset(req));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001488 if (status < 0) {
1489 nfs_context_set_write_error(req->wb_context, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 nfs_inode_remove_request(req);
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001491 dprintk(", error = %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 goto next;
1493 }
1494
1495 /* Okay, COMMIT succeeded, apparently. Check the verifier
1496 * returned by the server against all stored verfs. */
1497 if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
1498 /* We have a match */
1499 nfs_inode_remove_request(req);
1500 dprintk(" OK\n");
1501 goto next;
1502 }
1503 /* We have a mismatch. Write the page again */
1504 dprintk(" mismatch\n");
Fred6d884e82008-03-19 11:24:38 -04001505 nfs_mark_request_dirty(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 next:
Fred Isaman9994b622012-03-08 17:29:34 -05001507 nfs_unlock_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
Fred Isaman5917ce82011-03-23 13:27:48 +00001509}
Fred Isamane0c2b382011-03-23 13:27:53 +00001510EXPORT_SYMBOL_GPL(nfs_commit_release_pages);
Fred Isaman5917ce82011-03-23 13:27:48 +00001511
1512static void nfs_commit_release(void *calldata)
1513{
Fred Isaman0b7c0152012-04-20 14:47:39 -04001514 struct nfs_commit_data *data = calldata;
Fred Isaman5917ce82011-03-23 13:27:48 +00001515
1516 nfs_commit_release_pages(data);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001517 nfs_commit_clear_lock(NFS_I(data->inode));
Trond Myklebustc9d8f892008-04-15 16:56:39 -04001518 nfs_commitdata_release(calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
Trond Myklebust788e7a82006-03-20 13:44:27 -05001520
1521static const struct rpc_call_ops nfs_commit_ops = {
Fred Isaman0b7c0152012-04-20 14:47:39 -04001522 .rpc_call_prepare = nfs_commit_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -05001523 .rpc_call_done = nfs_commit_done,
1524 .rpc_release = nfs_commit_release,
1525};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Trond Myklebustb608b282010-07-30 15:31:54 -04001527int nfs_commit_inode(struct inode *inode, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 LIST_HEAD(head);
Trond Myklebust71d0a612010-04-22 15:35:57 -04001530 int may_wait = how & FLUSH_SYNC;
Trond Myklebustb8413f92011-03-21 15:37:01 -04001531 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Trond Myklebustb8413f92011-03-21 15:37:01 -04001533 res = nfs_commit_set_lock(NFS_I(inode), may_wait);
1534 if (res <= 0)
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001535 goto out_mark_dirty;
Fred Isamand6d6dc72012-03-08 17:29:35 -05001536 res = nfs_scan_commit(inode, &head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (res) {
Fred Isamana861a1e2011-03-23 13:27:51 +00001538 int error;
1539
1540 error = pnfs_commit_list(inode, &head, how);
1541 if (error == PNFS_NOT_ATTEMPTED)
1542 error = nfs_commit_list(inode, &head, how);
Trond Myklebust3da28eb2005-06-22 17:16:31 +00001543 if (error < 0)
1544 return error;
Trond Myklebustb8413f92011-03-21 15:37:01 -04001545 if (!may_wait)
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001546 goto out_mark_dirty;
Trond Myklebustb8413f92011-03-21 15:37:01 -04001547 error = wait_on_bit(&NFS_I(inode)->flags,
1548 NFS_INO_COMMIT,
1549 nfs_wait_bit_killable,
1550 TASK_KILLABLE);
1551 if (error < 0)
1552 return error;
Trond Myklebust71d0a612010-04-22 15:35:57 -04001553 } else
1554 nfs_commit_clear_lock(NFS_I(inode));
Trond Myklebustc5efa5f2010-05-26 08:42:11 -04001555 return res;
1556 /* Note: If we exit without ensuring that the commit is complete,
1557 * we must mark the inode as dirty. Otherwise, future calls to
1558 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1559 * that the data is on the disk.
1560 */
1561out_mark_dirty:
1562 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return res;
1564}
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001565
1566static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1567{
Trond Myklebust420e3642010-02-19 17:00:02 -08001568 struct nfs_inode *nfsi = NFS_I(inode);
1569 int flags = FLUSH_SYNC;
1570 int ret = 0;
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001571
Jeff Layton3236c3e2011-10-11 09:49:21 -04001572 /* no commits means nothing needs to be done */
1573 if (!nfsi->ncommit)
1574 return ret;
1575
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001576 if (wbc->sync_mode == WB_SYNC_NONE) {
1577 /* Don't commit yet if this is a non-blocking flush and there
1578 * are a lot of outstanding writes for this mapping.
1579 */
1580 if (nfsi->ncommit <= (nfsi->npages >> 1))
1581 goto out_mark_dirty;
Trond Myklebust420e3642010-02-19 17:00:02 -08001582
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001583 /* don't wait for the COMMIT response */
Trond Myklebust420e3642010-02-19 17:00:02 -08001584 flags = 0;
Jeff Laytona00dd6c2010-09-28 09:14:01 -04001585 }
1586
Trond Myklebust420e3642010-02-19 17:00:02 -08001587 ret = nfs_commit_inode(inode, flags);
1588 if (ret >= 0) {
1589 if (wbc->sync_mode == WB_SYNC_NONE) {
1590 if (ret < wbc->nr_to_write)
1591 wbc->nr_to_write -= ret;
1592 else
1593 wbc->nr_to_write = 0;
1594 }
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001595 return 0;
Trond Myklebust420e3642010-02-19 17:00:02 -08001596 }
1597out_mark_dirty:
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001598 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1599 return ret;
1600}
Trond Myklebustc63c7b02007-04-02 19:29:52 -04001601#else
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001602static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
1603{
1604 return 0;
1605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606#endif
1607
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001608int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
1609{
Andy Adamson863a3c62011-03-23 13:27:54 +00001610 int ret;
1611
1612 ret = nfs_commit_unstable_pages(inode, wbc);
1613 if (ret >= 0 && test_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags)) {
Andy Adamsonef311532011-03-12 02:58:10 -05001614 int status;
1615 bool sync = true;
Andy Adamson863a3c62011-03-23 13:27:54 +00001616
Wu Fengguang846d5a02011-05-05 21:10:38 -06001617 if (wbc->sync_mode == WB_SYNC_NONE)
Andy Adamsonef311532011-03-12 02:58:10 -05001618 sync = false;
Andy Adamson863a3c62011-03-23 13:27:54 +00001619
1620 status = pnfs_layoutcommit_inode(inode, sync);
1621 if (status < 0)
1622 return status;
1623 }
1624 return ret;
Trond Myklebust8fc795f2010-02-19 16:46:56 -08001625}
1626
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001627/*
1628 * flush the inode to disk.
1629 */
1630int nfs_wb_all(struct inode *inode)
Trond Myklebust34901f72007-07-25 14:09:54 -04001631{
1632 struct writeback_control wbc = {
Trond Myklebust72cb77f2009-03-11 14:10:30 -04001633 .sync_mode = WB_SYNC_ALL,
Trond Myklebust34901f72007-07-25 14:09:54 -04001634 .nr_to_write = LONG_MAX,
Trond Myklebustd7fb1202008-10-06 20:08:56 -04001635 .range_start = 0,
1636 .range_end = LLONG_MAX,
Trond Myklebust34901f72007-07-25 14:09:54 -04001637 };
Trond Myklebust34901f72007-07-25 14:09:54 -04001638
Trond Myklebustacdc53b2010-02-19 17:03:26 -08001639 return sync_inode(inode, &wbc);
Trond Myklebust1c759502006-10-09 16:18:38 -04001640}
1641
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001642int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1643{
1644 struct nfs_page *req;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001645 int ret = 0;
1646
1647 BUG_ON(!PageLocked(page));
1648 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001649 wait_on_page_writeback(page);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001650 req = nfs_page_find_request(page);
1651 if (req == NULL)
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001652 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001653 if (nfs_lock_request_dontget(req)) {
Trond Myklebust8dd37752012-03-15 17:16:40 -04001654 nfs_clear_request_commit(req);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001655 nfs_inode_remove_request(req);
1656 /*
1657 * In case nfs_inode_remove_request has marked the
1658 * page as being dirty
1659 */
1660 cancel_dirty_page(page, PAGE_CACHE_SIZE);
1661 nfs_unlock_request(req);
1662 break;
1663 }
1664 ret = nfs_wait_on_request(req);
Trond Myklebustc9edda72010-01-26 15:41:34 -05001665 nfs_release_request(req);
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001666 if (ret < 0)
Trond Myklebustc9889502010-02-19 17:03:21 -08001667 break;
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001668 }
Trond Myklebust1b3b4a12007-08-28 10:29:36 -04001669 return ret;
1670}
1671
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001672/*
1673 * Write back all requests on one page - we do this before reading it.
1674 */
1675int nfs_wb_page(struct inode *inode, struct page *page)
Trond Myklebust1c759502006-10-09 16:18:38 -04001676{
1677 loff_t range_start = page_offset(page);
1678 loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001679 struct writeback_control wbc = {
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001680 .sync_mode = WB_SYNC_ALL,
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001681 .nr_to_write = 0,
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001682 .range_start = range_start,
1683 .range_end = range_end,
1684 };
1685 int ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001686
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001687 for (;;) {
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001688 wait_on_page_writeback(page);
Trond Myklebust73e33022008-04-11 16:03:54 -04001689 if (clear_page_dirty_for_io(page)) {
1690 ret = nfs_writepage_locked(page, &wbc);
1691 if (ret < 0)
1692 goto out_error;
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001693 continue;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001694 }
Trond Myklebust0522f6a2010-05-26 08:42:24 -04001695 if (!PagePrivate(page))
1696 break;
1697 ret = nfs_commit_inode(inode, FLUSH_SYNC);
Trond Myklebustba8b06e2010-04-27 18:33:54 -04001698 if (ret < 0)
Trond Myklebust73e33022008-04-11 16:03:54 -04001699 goto out_error;
Trond Myklebust7f2f12d2010-02-19 17:03:28 -08001700 }
Trond Myklebust73e33022008-04-11 16:03:54 -04001701 return 0;
1702out_error:
Trond Myklebust4d770cc2006-12-05 00:35:41 -05001703 return ret;
Trond Myklebust1c759502006-10-09 16:18:38 -04001704}
1705
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001706#ifdef CONFIG_MIGRATION
1707int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
Mel Gormana6bc32b2012-01-12 17:19:43 -08001708 struct page *page, enum migrate_mode mode)
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001709{
Jeff Layton2da95652011-10-12 10:57:42 -04001710 /*
1711 * If PagePrivate is set, then the page is currently associated with
1712 * an in-progress read or write request. Don't try to migrate it.
1713 *
1714 * FIXME: we could do this in principle, but we'll need a way to ensure
1715 * that we can safely release the inode reference while holding
1716 * the page lock.
1717 */
1718 if (PagePrivate(page))
1719 return -EBUSY;
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001720
Trond Myklebust7549ad52010-02-08 09:32:34 -05001721 nfs_fscache_release_page(page, GFP_KERNEL);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001722
Mel Gormana6bc32b2012-01-12 17:19:43 -08001723 return migrate_page(mapping, newpage, page, mode);
Trond Myklebust074cc1d2009-08-10 08:54:13 -04001724}
1725#endif
1726
David Howellsf7b422b2006-06-09 09:34:33 -04001727int __init nfs_init_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
Fred Isamancd841602012-04-20 14:47:44 -04001730 sizeof(struct nfs_write_header),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001732 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (nfs_wdata_cachep == NULL)
1734 return -ENOMEM;
1735
Matthew Dobson93d23412006-03-26 01:37:50 -08001736 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
1737 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (nfs_wdata_mempool == NULL)
1739 return -ENOMEM;
1740
Fred Isaman0b7c0152012-04-20 14:47:39 -04001741 nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
1742 sizeof(struct nfs_commit_data),
1743 0, SLAB_HWCACHE_ALIGN,
1744 NULL);
1745 if (nfs_cdata_cachep == NULL)
1746 return -ENOMEM;
1747
Matthew Dobson93d23412006-03-26 01:37:50 -08001748 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
1749 nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (nfs_commit_mempool == NULL)
1751 return -ENOMEM;
1752
Peter Zijlstra89a09142007-03-16 13:38:26 -08001753 /*
1754 * NFS congestion size, scale with available memory.
1755 *
1756 * 64MB: 8192k
1757 * 128MB: 11585k
1758 * 256MB: 16384k
1759 * 512MB: 23170k
1760 * 1GB: 32768k
1761 * 2GB: 46340k
1762 * 4GB: 65536k
1763 * 8GB: 92681k
1764 * 16GB: 131072k
1765 *
1766 * This allows larger machines to have larger/more transfers.
1767 * Limit the default to 256M
1768 */
1769 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
1770 if (nfs_congestion_kb > 256*1024)
1771 nfs_congestion_kb = 256*1024;
1772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return 0;
1774}
1775
David Brownell266bee82006-06-27 12:59:15 -07001776void nfs_destroy_writepagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
1778 mempool_destroy(nfs_commit_mempool);
1779 mempool_destroy(nfs_wdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001780 kmem_cache_destroy(nfs_wdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782