xref: /openbmc/linux/fs/nfs/write.c (revision d097971d)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * linux/fs/nfs/write.c
31da177e4SLinus Torvalds  *
47c85d900STrond Myklebust  * Write file data over NFS.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
71da177e4SLinus Torvalds  */
81da177e4SLinus Torvalds 
91da177e4SLinus Torvalds #include <linux/types.h>
101da177e4SLinus Torvalds #include <linux/slab.h>
111da177e4SLinus Torvalds #include <linux/mm.h>
121da177e4SLinus Torvalds #include <linux/pagemap.h>
131da177e4SLinus Torvalds #include <linux/file.h>
141da177e4SLinus Torvalds #include <linux/writeback.h>
1589a09141SPeter Zijlstra #include <linux/swap.h>
16074cc1deSTrond Myklebust #include <linux/migrate.h>
171da177e4SLinus Torvalds 
181da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h>
191da177e4SLinus Torvalds #include <linux/nfs_fs.h>
201da177e4SLinus Torvalds #include <linux/nfs_mount.h>
211da177e4SLinus Torvalds #include <linux/nfs_page.h>
223fcfab16SAndrew Morton #include <linux/backing-dev.h>
233fcfab16SAndrew Morton 
241da177e4SLinus Torvalds #include <asm/uaccess.h>
251da177e4SLinus Torvalds 
261da177e4SLinus Torvalds #include "delegation.h"
2749a70f27STrond Myklebust #include "internal.h"
2891d5b470SChuck Lever #include "iostat.h"
29def6ed7eSAndy Adamson #include "nfs4_fs.h"
30074cc1deSTrond Myklebust #include "fscache.h"
3194ad1c80SFred Isaman #include "pnfs.h"
321da177e4SLinus Torvalds 
331da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
341da177e4SLinus Torvalds 
351da177e4SLinus Torvalds #define MIN_POOL_WRITE		(32)
361da177e4SLinus Torvalds #define MIN_POOL_COMMIT		(4)
371da177e4SLinus Torvalds 
381da177e4SLinus Torvalds /*
391da177e4SLinus Torvalds  * Local function declarations
401da177e4SLinus Torvalds  */
41c63c7b05STrond Myklebust static void nfs_pageio_init_write(struct nfs_pageio_descriptor *desc,
42c63c7b05STrond Myklebust 				  struct inode *inode, int ioflags);
43f8512ad0SFred Isaman static void nfs_redirty_request(struct nfs_page *req);
44788e7a89STrond Myklebust static const struct rpc_call_ops nfs_write_partial_ops;
45788e7a89STrond Myklebust static const struct rpc_call_ops nfs_write_full_ops;
46788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops;
471da177e4SLinus Torvalds 
48e18b890bSChristoph Lameter static struct kmem_cache *nfs_wdata_cachep;
493feb2d49STrond Myklebust static mempool_t *nfs_wdata_mempool;
501da177e4SLinus Torvalds static mempool_t *nfs_commit_mempool;
511da177e4SLinus Torvalds 
52c9d8f89dSTrond Myklebust struct nfs_write_data *nfs_commitdata_alloc(void)
531da177e4SLinus Torvalds {
54e6b4f8daSChristoph Lameter 	struct nfs_write_data *p = mempool_alloc(nfs_commit_mempool, GFP_NOFS);
5540859d7eSChuck Lever 
561da177e4SLinus Torvalds 	if (p) {
571da177e4SLinus Torvalds 		memset(p, 0, sizeof(*p));
581da177e4SLinus Torvalds 		INIT_LIST_HEAD(&p->pages);
591da177e4SLinus Torvalds 	}
601da177e4SLinus Torvalds 	return p;
611da177e4SLinus Torvalds }
62e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
631da177e4SLinus Torvalds 
645e4424afSTrond Myklebust void nfs_commit_free(struct nfs_write_data *p)
651da177e4SLinus Torvalds {
6640859d7eSChuck Lever 	if (p && (p->pagevec != &p->page_array[0]))
6740859d7eSChuck Lever 		kfree(p->pagevec);
681da177e4SLinus Torvalds 	mempool_free(p, nfs_commit_mempool);
691da177e4SLinus Torvalds }
70e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_free);
711da177e4SLinus Torvalds 
728d5658c9STrond Myklebust struct nfs_write_data *nfs_writedata_alloc(unsigned int pagecount)
733feb2d49STrond Myklebust {
74e6b4f8daSChristoph Lameter 	struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, GFP_NOFS);
753feb2d49STrond Myklebust 
763feb2d49STrond Myklebust 	if (p) {
773feb2d49STrond Myklebust 		memset(p, 0, sizeof(*p));
783feb2d49STrond Myklebust 		INIT_LIST_HEAD(&p->pages);
79e9f7bee1STrond Myklebust 		p->npages = pagecount;
800d0b5cb3SChuck Lever 		if (pagecount <= ARRAY_SIZE(p->page_array))
810d0b5cb3SChuck Lever 			p->pagevec = p->page_array;
823feb2d49STrond Myklebust 		else {
830d0b5cb3SChuck Lever 			p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
840d0b5cb3SChuck Lever 			if (!p->pagevec) {
853feb2d49STrond Myklebust 				mempool_free(p, nfs_wdata_mempool);
863feb2d49STrond Myklebust 				p = NULL;
873feb2d49STrond Myklebust 			}
883feb2d49STrond Myklebust 		}
893feb2d49STrond Myklebust 	}
903feb2d49STrond Myklebust 	return p;
913feb2d49STrond Myklebust }
923feb2d49STrond Myklebust 
931ae88b2eSTrond Myklebust void nfs_writedata_free(struct nfs_write_data *p)
943feb2d49STrond Myklebust {
953feb2d49STrond Myklebust 	if (p && (p->pagevec != &p->page_array[0]))
963feb2d49STrond Myklebust 		kfree(p->pagevec);
973feb2d49STrond Myklebust 	mempool_free(p, nfs_wdata_mempool);
983feb2d49STrond Myklebust }
993feb2d49STrond Myklebust 
1001ae88b2eSTrond Myklebust static void nfs_writedata_release(struct nfs_write_data *wdata)
1011da177e4SLinus Torvalds {
1025053aa56SFred Isaman 	put_lseg(wdata->lseg);
103383ba719STrond Myklebust 	put_nfs_open_context(wdata->args.context);
1041da177e4SLinus Torvalds 	nfs_writedata_free(wdata);
1051da177e4SLinus Torvalds }
1061da177e4SLinus Torvalds 
1077b159fc1STrond Myklebust static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
1087b159fc1STrond Myklebust {
1097b159fc1STrond Myklebust 	ctx->error = error;
1107b159fc1STrond Myklebust 	smp_wmb();
1117b159fc1STrond Myklebust 	set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
1127b159fc1STrond Myklebust }
1137b159fc1STrond Myklebust 
114277459d2STrond Myklebust static struct nfs_page *nfs_page_find_request_locked(struct page *page)
115277459d2STrond Myklebust {
116277459d2STrond Myklebust 	struct nfs_page *req = NULL;
117277459d2STrond Myklebust 
118277459d2STrond Myklebust 	if (PagePrivate(page)) {
119277459d2STrond Myklebust 		req = (struct nfs_page *)page_private(page);
120277459d2STrond Myklebust 		if (req != NULL)
121c03b4024STrond Myklebust 			kref_get(&req->wb_kref);
122277459d2STrond Myklebust 	}
123277459d2STrond Myklebust 	return req;
124277459d2STrond Myklebust }
125277459d2STrond Myklebust 
126277459d2STrond Myklebust static struct nfs_page *nfs_page_find_request(struct page *page)
127277459d2STrond Myklebust {
128587142f8STrond Myklebust 	struct inode *inode = page->mapping->host;
129277459d2STrond Myklebust 	struct nfs_page *req = NULL;
130277459d2STrond Myklebust 
131587142f8STrond Myklebust 	spin_lock(&inode->i_lock);
132277459d2STrond Myklebust 	req = nfs_page_find_request_locked(page);
133587142f8STrond Myklebust 	spin_unlock(&inode->i_lock);
134277459d2STrond Myklebust 	return req;
135277459d2STrond Myklebust }
136277459d2STrond Myklebust 
1371da177e4SLinus Torvalds /* Adjust the file length if we're writing beyond the end */
1381da177e4SLinus Torvalds static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
1391da177e4SLinus Torvalds {
1401da177e4SLinus Torvalds 	struct inode *inode = page->mapping->host;
141a3d01454STrond Myklebust 	loff_t end, i_size;
142a3d01454STrond Myklebust 	pgoff_t end_index;
1431da177e4SLinus Torvalds 
144a3d01454STrond Myklebust 	spin_lock(&inode->i_lock);
145a3d01454STrond Myklebust 	i_size = i_size_read(inode);
146a3d01454STrond Myklebust 	end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
1471da177e4SLinus Torvalds 	if (i_size > 0 && page->index < end_index)
148a3d01454STrond Myklebust 		goto out;
1491da177e4SLinus Torvalds 	end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + ((loff_t)offset+count);
1501da177e4SLinus Torvalds 	if (i_size >= end)
151a3d01454STrond Myklebust 		goto out;
1521da177e4SLinus Torvalds 	i_size_write(inode, end);
153a3d01454STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
154a3d01454STrond Myklebust out:
155a3d01454STrond Myklebust 	spin_unlock(&inode->i_lock);
1561da177e4SLinus Torvalds }
1571da177e4SLinus Torvalds 
158a301b777STrond Myklebust /* A writeback failed: mark the page as bad, and invalidate the page cache */
159a301b777STrond Myklebust static void nfs_set_pageerror(struct page *page)
160a301b777STrond Myklebust {
161a301b777STrond Myklebust 	SetPageError(page);
162a301b777STrond Myklebust 	nfs_zap_mapping(page->mapping->host, page->mapping);
163a301b777STrond Myklebust }
164a301b777STrond Myklebust 
1651da177e4SLinus Torvalds /* We can set the PG_uptodate flag if we see that a write request
1661da177e4SLinus Torvalds  * covers the full page.
1671da177e4SLinus Torvalds  */
1681da177e4SLinus Torvalds static void nfs_mark_uptodate(struct page *page, unsigned int base, unsigned int count)
1691da177e4SLinus Torvalds {
1701da177e4SLinus Torvalds 	if (PageUptodate(page))
1711da177e4SLinus Torvalds 		return;
1721da177e4SLinus Torvalds 	if (base != 0)
1731da177e4SLinus Torvalds 		return;
17449a70f27STrond Myklebust 	if (count != nfs_page_length(page))
1751da177e4SLinus Torvalds 		return;
1761da177e4SLinus Torvalds 	SetPageUptodate(page);
1771da177e4SLinus Torvalds }
1781da177e4SLinus Torvalds 
1791da177e4SLinus Torvalds static int wb_priority(struct writeback_control *wbc)
1801da177e4SLinus Torvalds {
1811da177e4SLinus Torvalds 	if (wbc->for_reclaim)
182c63c7b05STrond Myklebust 		return FLUSH_HIGHPRI | FLUSH_STABLE;
183b17621feSWu Fengguang 	if (wbc->for_kupdate || wbc->for_background)
184b31268acSTrond Myklebust 		return FLUSH_LOWPRI | FLUSH_COND_STABLE;
185b31268acSTrond Myklebust 	return FLUSH_COND_STABLE;
1861da177e4SLinus Torvalds }
1871da177e4SLinus Torvalds 
1881da177e4SLinus Torvalds /*
18989a09141SPeter Zijlstra  * NFS congestion control
19089a09141SPeter Zijlstra  */
19189a09141SPeter Zijlstra 
19289a09141SPeter Zijlstra int nfs_congestion_kb;
19389a09141SPeter Zijlstra 
19489a09141SPeter Zijlstra #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10))
19589a09141SPeter Zijlstra #define NFS_CONGESTION_OFF_THRESH	\
19689a09141SPeter Zijlstra 	(NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
19789a09141SPeter Zijlstra 
1985a6d41b3STrond Myklebust static int nfs_set_page_writeback(struct page *page)
19989a09141SPeter Zijlstra {
2005a6d41b3STrond Myklebust 	int ret = test_set_page_writeback(page);
2015a6d41b3STrond Myklebust 
2025a6d41b3STrond Myklebust 	if (!ret) {
20389a09141SPeter Zijlstra 		struct inode *inode = page->mapping->host;
20489a09141SPeter Zijlstra 		struct nfs_server *nfss = NFS_SERVER(inode);
20589a09141SPeter Zijlstra 
206a6305ddbSTrond Myklebust 		page_cache_get(page);
207277866a0SPeter Zijlstra 		if (atomic_long_inc_return(&nfss->writeback) >
2088aa7e847SJens Axboe 				NFS_CONGESTION_ON_THRESH) {
2098aa7e847SJens Axboe 			set_bdi_congested(&nfss->backing_dev_info,
2108aa7e847SJens Axboe 						BLK_RW_ASYNC);
2118aa7e847SJens Axboe 		}
21289a09141SPeter Zijlstra 	}
2135a6d41b3STrond Myklebust 	return ret;
21489a09141SPeter Zijlstra }
21589a09141SPeter Zijlstra 
21689a09141SPeter Zijlstra static void nfs_end_page_writeback(struct page *page)
21789a09141SPeter Zijlstra {
21889a09141SPeter Zijlstra 	struct inode *inode = page->mapping->host;
21989a09141SPeter Zijlstra 	struct nfs_server *nfss = NFS_SERVER(inode);
22089a09141SPeter Zijlstra 
22189a09141SPeter Zijlstra 	end_page_writeback(page);
222a6305ddbSTrond Myklebust 	page_cache_release(page);
223c4dc4beeSPeter Zijlstra 	if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
2248aa7e847SJens Axboe 		clear_bdi_congested(&nfss->backing_dev_info, BLK_RW_ASYNC);
22589a09141SPeter Zijlstra }
22689a09141SPeter Zijlstra 
227cfb506e1STrond Myklebust static struct nfs_page *nfs_find_and_lock_request(struct page *page, bool nonblock)
228e261f51fSTrond Myklebust {
229587142f8STrond Myklebust 	struct inode *inode = page->mapping->host;
230e261f51fSTrond Myklebust 	struct nfs_page *req;
231e261f51fSTrond Myklebust 	int ret;
232e261f51fSTrond Myklebust 
233587142f8STrond Myklebust 	spin_lock(&inode->i_lock);
234e261f51fSTrond Myklebust 	for (;;) {
235e261f51fSTrond Myklebust 		req = nfs_page_find_request_locked(page);
236074cc1deSTrond Myklebust 		if (req == NULL)
237074cc1deSTrond Myklebust 			break;
238acee478aSTrond Myklebust 		if (nfs_set_page_tag_locked(req))
239e261f51fSTrond Myklebust 			break;
240e261f51fSTrond Myklebust 		/* Note: If we hold the page lock, as is the case in nfs_writepage,
241acee478aSTrond Myklebust 		 *	 then the call to nfs_set_page_tag_locked() will always
242e261f51fSTrond Myklebust 		 *	 succeed provided that someone hasn't already marked the
243e261f51fSTrond Myklebust 		 *	 request as dirty (in which case we don't care).
244e261f51fSTrond Myklebust 		 */
245587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
246cfb506e1STrond Myklebust 		if (!nonblock)
247e261f51fSTrond Myklebust 			ret = nfs_wait_on_request(req);
248cfb506e1STrond Myklebust 		else
249cfb506e1STrond Myklebust 			ret = -EAGAIN;
250e261f51fSTrond Myklebust 		nfs_release_request(req);
251e261f51fSTrond Myklebust 		if (ret != 0)
252074cc1deSTrond Myklebust 			return ERR_PTR(ret);
253587142f8STrond Myklebust 		spin_lock(&inode->i_lock);
254e261f51fSTrond Myklebust 	}
255587142f8STrond Myklebust 	spin_unlock(&inode->i_lock);
256074cc1deSTrond Myklebust 	return req;
257612c9384STrond Myklebust }
258074cc1deSTrond Myklebust 
259074cc1deSTrond Myklebust /*
260074cc1deSTrond Myklebust  * Find an associated nfs write request, and prepare to flush it out
261074cc1deSTrond Myklebust  * May return an error if the user signalled nfs_wait_on_request().
262074cc1deSTrond Myklebust  */
263074cc1deSTrond Myklebust static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
264cfb506e1STrond Myklebust 				struct page *page, bool nonblock)
265074cc1deSTrond Myklebust {
266074cc1deSTrond Myklebust 	struct nfs_page *req;
267074cc1deSTrond Myklebust 	int ret = 0;
268074cc1deSTrond Myklebust 
269cfb506e1STrond Myklebust 	req = nfs_find_and_lock_request(page, nonblock);
270074cc1deSTrond Myklebust 	if (!req)
271074cc1deSTrond Myklebust 		goto out;
272074cc1deSTrond Myklebust 	ret = PTR_ERR(req);
273074cc1deSTrond Myklebust 	if (IS_ERR(req))
274074cc1deSTrond Myklebust 		goto out;
275074cc1deSTrond Myklebust 
276074cc1deSTrond Myklebust 	ret = nfs_set_page_writeback(page);
277074cc1deSTrond Myklebust 	BUG_ON(ret != 0);
278074cc1deSTrond Myklebust 	BUG_ON(test_bit(PG_CLEAN, &req->wb_flags));
279074cc1deSTrond Myklebust 
280f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(pgio, req)) {
281f8512ad0SFred Isaman 		nfs_redirty_request(req);
282074cc1deSTrond Myklebust 		ret = pgio->pg_error;
283f8512ad0SFred Isaman 	}
284074cc1deSTrond Myklebust out:
285074cc1deSTrond Myklebust 	return ret;
286e261f51fSTrond Myklebust }
287e261f51fSTrond Myklebust 
288f758c885STrond Myklebust static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, struct nfs_pageio_descriptor *pgio)
289f758c885STrond Myklebust {
290f758c885STrond Myklebust 	struct inode *inode = page->mapping->host;
291cfb506e1STrond Myklebust 	int ret;
292f758c885STrond Myklebust 
293f758c885STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
294f758c885STrond Myklebust 	nfs_add_stats(inode, NFSIOS_WRITEPAGES, 1);
295f758c885STrond Myklebust 
296f758c885STrond Myklebust 	nfs_pageio_cond_complete(pgio, page->index);
2971b430beeSWu Fengguang 	ret = nfs_page_async_flush(pgio, page, wbc->sync_mode == WB_SYNC_NONE);
298cfb506e1STrond Myklebust 	if (ret == -EAGAIN) {
299cfb506e1STrond Myklebust 		redirty_page_for_writepage(wbc, page);
300cfb506e1STrond Myklebust 		ret = 0;
301cfb506e1STrond Myklebust 	}
302cfb506e1STrond Myklebust 	return ret;
303f758c885STrond Myklebust }
304f758c885STrond Myklebust 
305e261f51fSTrond Myklebust /*
3061da177e4SLinus Torvalds  * Write an mmapped page to the server.
3071da177e4SLinus Torvalds  */
3084d770ccfSTrond Myklebust static int nfs_writepage_locked(struct page *page, struct writeback_control *wbc)
3091da177e4SLinus Torvalds {
310f758c885STrond Myklebust 	struct nfs_pageio_descriptor pgio;
311e261f51fSTrond Myklebust 	int err;
3121da177e4SLinus Torvalds 
313f758c885STrond Myklebust 	nfs_pageio_init_write(&pgio, page->mapping->host, wb_priority(wbc));
314f758c885STrond Myklebust 	err = nfs_do_writepage(page, wbc, &pgio);
315f758c885STrond Myklebust 	nfs_pageio_complete(&pgio);
316f758c885STrond Myklebust 	if (err < 0)
3174d770ccfSTrond Myklebust 		return err;
318f758c885STrond Myklebust 	if (pgio.pg_error < 0)
319f758c885STrond Myklebust 		return pgio.pg_error;
320f758c885STrond Myklebust 	return 0;
3214d770ccfSTrond Myklebust }
3224d770ccfSTrond Myklebust 
3234d770ccfSTrond Myklebust int nfs_writepage(struct page *page, struct writeback_control *wbc)
3244d770ccfSTrond Myklebust {
325f758c885STrond Myklebust 	int ret;
3264d770ccfSTrond Myklebust 
327f758c885STrond Myklebust 	ret = nfs_writepage_locked(page, wbc);
3281da177e4SLinus Torvalds 	unlock_page(page);
329f758c885STrond Myklebust 	return ret;
330f758c885STrond Myklebust }
331f758c885STrond Myklebust 
332f758c885STrond Myklebust static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
333f758c885STrond Myklebust {
334f758c885STrond Myklebust 	int ret;
335f758c885STrond Myklebust 
336f758c885STrond Myklebust 	ret = nfs_do_writepage(page, wbc, data);
337f758c885STrond Myklebust 	unlock_page(page);
338f758c885STrond Myklebust 	return ret;
3391da177e4SLinus Torvalds }
3401da177e4SLinus Torvalds 
3411da177e4SLinus Torvalds int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
3421da177e4SLinus Torvalds {
3431da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
34472cb77f4STrond Myklebust 	unsigned long *bitlock = &NFS_I(inode)->flags;
345c63c7b05STrond Myklebust 	struct nfs_pageio_descriptor pgio;
3461da177e4SLinus Torvalds 	int err;
3471da177e4SLinus Torvalds 
34872cb77f4STrond Myklebust 	/* Stop dirtying of new pages while we sync */
34972cb77f4STrond Myklebust 	err = wait_on_bit_lock(bitlock, NFS_INO_FLUSHING,
35072cb77f4STrond Myklebust 			nfs_wait_bit_killable, TASK_KILLABLE);
35172cb77f4STrond Myklebust 	if (err)
35272cb77f4STrond Myklebust 		goto out_err;
35372cb77f4STrond Myklebust 
35491d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
35591d5b470SChuck Lever 
356c63c7b05STrond Myklebust 	nfs_pageio_init_write(&pgio, inode, wb_priority(wbc));
357f758c885STrond Myklebust 	err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
358c63c7b05STrond Myklebust 	nfs_pageio_complete(&pgio);
35972cb77f4STrond Myklebust 
36072cb77f4STrond Myklebust 	clear_bit_unlock(NFS_INO_FLUSHING, bitlock);
36172cb77f4STrond Myklebust 	smp_mb__after_clear_bit();
36272cb77f4STrond Myklebust 	wake_up_bit(bitlock, NFS_INO_FLUSHING);
36372cb77f4STrond Myklebust 
364f758c885STrond Myklebust 	if (err < 0)
36572cb77f4STrond Myklebust 		goto out_err;
36672cb77f4STrond Myklebust 	err = pgio.pg_error;
36772cb77f4STrond Myklebust 	if (err < 0)
36872cb77f4STrond Myklebust 		goto out_err;
369c63c7b05STrond Myklebust 	return 0;
37072cb77f4STrond Myklebust out_err:
37172cb77f4STrond Myklebust 	return err;
3721da177e4SLinus Torvalds }
3731da177e4SLinus Torvalds 
3741da177e4SLinus Torvalds /*
3751da177e4SLinus Torvalds  * Insert a write request into an inode
3761da177e4SLinus Torvalds  */
377e7d39069STrond Myklebust static int nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
3781da177e4SLinus Torvalds {
3791da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
3801da177e4SLinus Torvalds 	int error;
3811da177e4SLinus Torvalds 
382e7d39069STrond Myklebust 	error = radix_tree_preload(GFP_NOFS);
383e7d39069STrond Myklebust 	if (error != 0)
384e7d39069STrond Myklebust 		goto out;
385e7d39069STrond Myklebust 
386e7d39069STrond Myklebust 	/* Lock the request! */
387e7d39069STrond Myklebust 	nfs_lock_request_dontget(req);
388e7d39069STrond Myklebust 
389e7d39069STrond Myklebust 	spin_lock(&inode->i_lock);
3901da177e4SLinus Torvalds 	error = radix_tree_insert(&nfsi->nfs_page_tree, req->wb_index, req);
39127852596SNick Piggin 	BUG_ON(error);
3924d65c520STrond Myklebust 	if (!nfsi->npages && nfs_have_delegation(inode, FMODE_WRITE))
3931da177e4SLinus Torvalds 		nfsi->change_attr++;
3942df485a7STrond Myklebust 	set_bit(PG_MAPPED, &req->wb_flags);
395deb7d638STrond Myklebust 	SetPagePrivate(req->wb_page);
396277459d2STrond Myklebust 	set_page_private(req->wb_page, (unsigned long)req);
3971da177e4SLinus Torvalds 	nfsi->npages++;
398c03b4024STrond Myklebust 	kref_get(&req->wb_kref);
39927852596SNick Piggin 	radix_tree_tag_set(&nfsi->nfs_page_tree, req->wb_index,
40027852596SNick Piggin 				NFS_PAGE_TAG_LOCKED);
401e7d39069STrond Myklebust 	spin_unlock(&inode->i_lock);
402e7d39069STrond Myklebust 	radix_tree_preload_end();
403e7d39069STrond Myklebust out:
404e7d39069STrond Myklebust 	return error;
4051da177e4SLinus Torvalds }
4061da177e4SLinus Torvalds 
4071da177e4SLinus Torvalds /*
40889a09141SPeter Zijlstra  * Remove a write request from an inode
4091da177e4SLinus Torvalds  */
4101da177e4SLinus Torvalds static void nfs_inode_remove_request(struct nfs_page *req)
4111da177e4SLinus Torvalds {
41288be9f99STrond Myklebust 	struct inode *inode = req->wb_context->path.dentry->d_inode;
4131da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
4141da177e4SLinus Torvalds 
4151da177e4SLinus Torvalds 	BUG_ON (!NFS_WBACK_BUSY(req));
4161da177e4SLinus Torvalds 
417587142f8STrond Myklebust 	spin_lock(&inode->i_lock);
418277459d2STrond Myklebust 	set_page_private(req->wb_page, 0);
419deb7d638STrond Myklebust 	ClearPagePrivate(req->wb_page);
4202df485a7STrond Myklebust 	clear_bit(PG_MAPPED, &req->wb_flags);
4211da177e4SLinus Torvalds 	radix_tree_delete(&nfsi->nfs_page_tree, req->wb_index);
4221da177e4SLinus Torvalds 	nfsi->npages--;
423587142f8STrond Myklebust 	spin_unlock(&inode->i_lock);
4241da177e4SLinus Torvalds 	nfs_release_request(req);
4251da177e4SLinus Torvalds }
4261da177e4SLinus Torvalds 
42761822ab5STrond Myklebust static void
4286d884e8fSFred nfs_mark_request_dirty(struct nfs_page *req)
42961822ab5STrond Myklebust {
43061822ab5STrond Myklebust 	__set_page_dirty_nobuffers(req->wb_page);
431b80c3cb6STrond Myklebust 	__mark_inode_dirty(req->wb_page->mapping->host, I_DIRTY_DATASYNC);
43261822ab5STrond Myklebust }
43361822ab5STrond Myklebust 
4341da177e4SLinus Torvalds #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
4351da177e4SLinus Torvalds /*
4361da177e4SLinus Torvalds  * Add a request to the inode's commit list.
4371da177e4SLinus Torvalds  */
4381da177e4SLinus Torvalds static void
439a861a1e1SFred Isaman nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg)
4401da177e4SLinus Torvalds {
44188be9f99STrond Myklebust 	struct inode *inode = req->wb_context->path.dentry->d_inode;
4421da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
4431da177e4SLinus Torvalds 
444587142f8STrond Myklebust 	spin_lock(&inode->i_lock);
445e468bae9STrond Myklebust 	set_bit(PG_CLEAN, &(req)->wb_flags);
4465c369683STrond Myklebust 	radix_tree_tag_set(&nfsi->nfs_page_tree,
4475c369683STrond Myklebust 			req->wb_index,
4485c369683STrond Myklebust 			NFS_PAGE_TAG_COMMIT);
449ff778d02STrond Myklebust 	nfsi->ncommit++;
450587142f8STrond Myklebust 	spin_unlock(&inode->i_lock);
451a861a1e1SFred Isaman 	pnfs_mark_request_commit(req, lseg);
452fd39fc85SChristoph Lameter 	inc_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
453c9e51e41SPeter Zijlstra 	inc_bdi_stat(req->wb_page->mapping->backing_dev_info, BDI_RECLAIMABLE);
454a1803044STrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
4551da177e4SLinus Torvalds }
4568e821cadSTrond Myklebust 
457e468bae9STrond Myklebust static int
458e468bae9STrond Myklebust nfs_clear_request_commit(struct nfs_page *req)
459e468bae9STrond Myklebust {
460e468bae9STrond Myklebust 	struct page *page = req->wb_page;
461e468bae9STrond Myklebust 
462e468bae9STrond Myklebust 	if (test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) {
463e468bae9STrond Myklebust 		dec_zone_page_state(page, NR_UNSTABLE_NFS);
464e468bae9STrond Myklebust 		dec_bdi_stat(page->mapping->backing_dev_info, BDI_RECLAIMABLE);
465e468bae9STrond Myklebust 		return 1;
466e468bae9STrond Myklebust 	}
467e468bae9STrond Myklebust 	return 0;
468e468bae9STrond Myklebust }
469e468bae9STrond Myklebust 
4708e821cadSTrond Myklebust static inline
4718e821cadSTrond Myklebust int nfs_write_need_commit(struct nfs_write_data *data)
4728e821cadSTrond Myklebust {
473465d5243SFred Isaman 	if (data->verf.committed == NFS_DATA_SYNC)
474465d5243SFred Isaman 		return data->lseg == NULL;
475465d5243SFred Isaman 	else
4768e821cadSTrond Myklebust 		return data->verf.committed != NFS_FILE_SYNC;
4778e821cadSTrond Myklebust }
4788e821cadSTrond Myklebust 
4798e821cadSTrond Myklebust static inline
480a861a1e1SFred Isaman int nfs_reschedule_unstable_write(struct nfs_page *req,
481a861a1e1SFred Isaman 				  struct nfs_write_data *data)
4828e821cadSTrond Myklebust {
483e468bae9STrond Myklebust 	if (test_and_clear_bit(PG_NEED_COMMIT, &req->wb_flags)) {
484a861a1e1SFred Isaman 		nfs_mark_request_commit(req, data->lseg);
4858e821cadSTrond Myklebust 		return 1;
4868e821cadSTrond Myklebust 	}
4878e821cadSTrond Myklebust 	if (test_and_clear_bit(PG_NEED_RESCHED, &req->wb_flags)) {
4886d884e8fSFred 		nfs_mark_request_dirty(req);
4898e821cadSTrond Myklebust 		return 1;
4908e821cadSTrond Myklebust 	}
4918e821cadSTrond Myklebust 	return 0;
4928e821cadSTrond Myklebust }
4938e821cadSTrond Myklebust #else
4948e821cadSTrond Myklebust static inline void
495a861a1e1SFred Isaman nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg)
4968e821cadSTrond Myklebust {
4978e821cadSTrond Myklebust }
4988e821cadSTrond Myklebust 
499e468bae9STrond Myklebust static inline int
500e468bae9STrond Myklebust nfs_clear_request_commit(struct nfs_page *req)
501e468bae9STrond Myklebust {
502e468bae9STrond Myklebust 	return 0;
503e468bae9STrond Myklebust }
504e468bae9STrond Myklebust 
5058e821cadSTrond Myklebust static inline
5068e821cadSTrond Myklebust int nfs_write_need_commit(struct nfs_write_data *data)
5078e821cadSTrond Myklebust {
5088e821cadSTrond Myklebust 	return 0;
5098e821cadSTrond Myklebust }
5108e821cadSTrond Myklebust 
5118e821cadSTrond Myklebust static inline
512a861a1e1SFred Isaman int nfs_reschedule_unstable_write(struct nfs_page *req,
513a861a1e1SFred Isaman 				  struct nfs_write_data *data)
5148e821cadSTrond Myklebust {
5158e821cadSTrond Myklebust 	return 0;
5168e821cadSTrond Myklebust }
5171da177e4SLinus Torvalds #endif
5181da177e4SLinus Torvalds 
51947c62564STrond Myklebust #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
520fb8a1f11STrond Myklebust static int
521fb8a1f11STrond Myklebust nfs_need_commit(struct nfs_inode *nfsi)
522fb8a1f11STrond Myklebust {
523fb8a1f11STrond Myklebust 	return radix_tree_tagged(&nfsi->nfs_page_tree, NFS_PAGE_TAG_COMMIT);
524fb8a1f11STrond Myklebust }
525fb8a1f11STrond Myklebust 
5261da177e4SLinus Torvalds /*
5271da177e4SLinus Torvalds  * nfs_scan_commit - Scan an inode for commit requests
5281da177e4SLinus Torvalds  * @inode: NFS inode to scan
5291da177e4SLinus Torvalds  * @dst: destination list
5301da177e4SLinus Torvalds  * @idx_start: lower bound of page->index to scan.
5311da177e4SLinus Torvalds  * @npages: idx_start + npages sets the upper bound to scan.
5321da177e4SLinus Torvalds  *
5331da177e4SLinus Torvalds  * Moves requests from the inode's 'commit' request list.
5341da177e4SLinus Torvalds  * The requests are *not* checked to ensure that they form a contiguous set.
5351da177e4SLinus Torvalds  */
5361da177e4SLinus Torvalds static int
537ca52fec1STrond Myklebust nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
5381da177e4SLinus Torvalds {
5391da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
540ff778d02STrond Myklebust 	int ret;
5413da28eb1STrond Myklebust 
542fb8a1f11STrond Myklebust 	if (!nfs_need_commit(nfsi))
543fb8a1f11STrond Myklebust 		return 0;
544fb8a1f11STrond Myklebust 
5450d88f6e8SDave Chinner 	spin_lock(&inode->i_lock);
546ff778d02STrond Myklebust 	ret = nfs_scan_list(nfsi, dst, idx_start, npages, NFS_PAGE_TAG_COMMIT);
547ff778d02STrond Myklebust 	if (ret > 0)
548ff778d02STrond Myklebust 		nfsi->ncommit -= ret;
5490d88f6e8SDave Chinner 	spin_unlock(&inode->i_lock);
5500d88f6e8SDave Chinner 
5512928db1fSTrond Myklebust 	if (nfs_need_commit(NFS_I(inode)))
5522928db1fSTrond Myklebust 		__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
5530d88f6e8SDave Chinner 
554ff778d02STrond Myklebust 	return ret;
5551da177e4SLinus Torvalds }
556c42de9ddSTrond Myklebust #else
557fb8a1f11STrond Myklebust static inline int nfs_need_commit(struct nfs_inode *nfsi)
558fb8a1f11STrond Myklebust {
559fb8a1f11STrond Myklebust 	return 0;
560fb8a1f11STrond Myklebust }
561fb8a1f11STrond Myklebust 
562ca52fec1STrond Myklebust static inline int nfs_scan_commit(struct inode *inode, struct list_head *dst, pgoff_t idx_start, unsigned int npages)
563c42de9ddSTrond Myklebust {
564c42de9ddSTrond Myklebust 	return 0;
565c42de9ddSTrond Myklebust }
5661da177e4SLinus Torvalds #endif
5671da177e4SLinus Torvalds 
5681da177e4SLinus Torvalds /*
569e7d39069STrond Myklebust  * Search for an existing write request, and attempt to update
570e7d39069STrond Myklebust  * it to reflect a new dirty region on a given page.
5711da177e4SLinus Torvalds  *
572e7d39069STrond Myklebust  * If the attempt fails, then the existing request is flushed out
573e7d39069STrond Myklebust  * to disk.
5741da177e4SLinus Torvalds  */
575e7d39069STrond Myklebust static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
576e7d39069STrond Myklebust 		struct page *page,
577e7d39069STrond Myklebust 		unsigned int offset,
578e7d39069STrond Myklebust 		unsigned int bytes)
5791da177e4SLinus Torvalds {
580e7d39069STrond Myklebust 	struct nfs_page *req;
581e7d39069STrond Myklebust 	unsigned int rqend;
582e7d39069STrond Myklebust 	unsigned int end;
5831da177e4SLinus Torvalds 	int error;
584277459d2STrond Myklebust 
585e7d39069STrond Myklebust 	if (!PagePrivate(page))
586e7d39069STrond Myklebust 		return NULL;
587e7d39069STrond Myklebust 
588e7d39069STrond Myklebust 	end = offset + bytes;
589e7d39069STrond Myklebust 	spin_lock(&inode->i_lock);
590e7d39069STrond Myklebust 
591e7d39069STrond Myklebust 	for (;;) {
592e7d39069STrond Myklebust 		req = nfs_page_find_request_locked(page);
593e7d39069STrond Myklebust 		if (req == NULL)
594e7d39069STrond Myklebust 			goto out_unlock;
595e7d39069STrond Myklebust 
596e7d39069STrond Myklebust 		rqend = req->wb_offset + req->wb_bytes;
597e7d39069STrond Myklebust 		/*
598e7d39069STrond Myklebust 		 * Tell the caller to flush out the request if
599e7d39069STrond Myklebust 		 * the offsets are non-contiguous.
600e7d39069STrond Myklebust 		 * Note: nfs_flush_incompatible() will already
601e7d39069STrond Myklebust 		 * have flushed out requests having wrong owners.
602e7d39069STrond Myklebust 		 */
603e468bae9STrond Myklebust 		if (offset > rqend
604e7d39069STrond Myklebust 		    || end < req->wb_offset)
605e7d39069STrond Myklebust 			goto out_flushme;
606e7d39069STrond Myklebust 
607e7d39069STrond Myklebust 		if (nfs_set_page_tag_locked(req))
608e7d39069STrond Myklebust 			break;
609e7d39069STrond Myklebust 
610e7d39069STrond Myklebust 		/* The request is locked, so wait and then retry */
611587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
6121da177e4SLinus Torvalds 		error = nfs_wait_on_request(req);
6131da177e4SLinus Torvalds 		nfs_release_request(req);
614e7d39069STrond Myklebust 		if (error != 0)
615e7d39069STrond Myklebust 			goto out_err;
616e7d39069STrond Myklebust 		spin_lock(&inode->i_lock);
6171da177e4SLinus Torvalds 	}
6181da177e4SLinus Torvalds 
619ff778d02STrond Myklebust 	if (nfs_clear_request_commit(req) &&
620e468bae9STrond Myklebust 	    radix_tree_tag_clear(&NFS_I(inode)->nfs_page_tree,
621a861a1e1SFred Isaman 				 req->wb_index, NFS_PAGE_TAG_COMMIT) != NULL) {
622ff778d02STrond Myklebust 		NFS_I(inode)->ncommit--;
623a861a1e1SFred Isaman 		pnfs_clear_request_commit(req);
624a861a1e1SFred Isaman 	}
625e468bae9STrond Myklebust 
6261da177e4SLinus Torvalds 	/* Okay, the request matches. Update the region */
6271da177e4SLinus Torvalds 	if (offset < req->wb_offset) {
6281da177e4SLinus Torvalds 		req->wb_offset = offset;
6291da177e4SLinus Torvalds 		req->wb_pgbase = offset;
6301da177e4SLinus Torvalds 	}
6311da177e4SLinus Torvalds 	if (end > rqend)
6321da177e4SLinus Torvalds 		req->wb_bytes = end - req->wb_offset;
633e7d39069STrond Myklebust 	else
634e7d39069STrond Myklebust 		req->wb_bytes = rqend - req->wb_offset;
635e7d39069STrond Myklebust out_unlock:
636e7d39069STrond Myklebust 	spin_unlock(&inode->i_lock);
637e7d39069STrond Myklebust 	return req;
638e7d39069STrond Myklebust out_flushme:
639e7d39069STrond Myklebust 	spin_unlock(&inode->i_lock);
640e7d39069STrond Myklebust 	nfs_release_request(req);
641e7d39069STrond Myklebust 	error = nfs_wb_page(inode, page);
642e7d39069STrond Myklebust out_err:
643e7d39069STrond Myklebust 	return ERR_PTR(error);
644e7d39069STrond Myklebust }
6451da177e4SLinus Torvalds 
646e7d39069STrond Myklebust /*
647e7d39069STrond Myklebust  * Try to update an existing write request, or create one if there is none.
648e7d39069STrond Myklebust  *
649e7d39069STrond Myklebust  * Note: Should always be called with the Page Lock held to prevent races
650e7d39069STrond Myklebust  * if we have to add a new request. Also assumes that the caller has
651e7d39069STrond Myklebust  * already called nfs_flush_incompatible() if necessary.
652e7d39069STrond Myklebust  */
653e7d39069STrond Myklebust static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
654e7d39069STrond Myklebust 		struct page *page, unsigned int offset, unsigned int bytes)
655e7d39069STrond Myklebust {
656e7d39069STrond Myklebust 	struct inode *inode = page->mapping->host;
657e7d39069STrond Myklebust 	struct nfs_page	*req;
658e7d39069STrond Myklebust 	int error;
659e7d39069STrond Myklebust 
660e7d39069STrond Myklebust 	req = nfs_try_to_update_request(inode, page, offset, bytes);
661e7d39069STrond Myklebust 	if (req != NULL)
662e7d39069STrond Myklebust 		goto out;
663e7d39069STrond Myklebust 	req = nfs_create_request(ctx, inode, page, offset, bytes);
664e7d39069STrond Myklebust 	if (IS_ERR(req))
665e7d39069STrond Myklebust 		goto out;
666e7d39069STrond Myklebust 	error = nfs_inode_add_request(inode, req);
667e7d39069STrond Myklebust 	if (error != 0) {
668e7d39069STrond Myklebust 		nfs_release_request(req);
669e7d39069STrond Myklebust 		req = ERR_PTR(error);
670e7d39069STrond Myklebust 	}
671efc91ed0STrond Myklebust out:
67261e930a9STrond Myklebust 	return req;
6731da177e4SLinus Torvalds }
6741da177e4SLinus Torvalds 
675e7d39069STrond Myklebust static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
676e7d39069STrond Myklebust 		unsigned int offset, unsigned int count)
677e7d39069STrond Myklebust {
678e7d39069STrond Myklebust 	struct nfs_page	*req;
679e7d39069STrond Myklebust 
680e7d39069STrond Myklebust 	req = nfs_setup_write_request(ctx, page, offset, count);
681e7d39069STrond Myklebust 	if (IS_ERR(req))
682e7d39069STrond Myklebust 		return PTR_ERR(req);
683e7d39069STrond Myklebust 	/* Update file length */
684e7d39069STrond Myklebust 	nfs_grow_file(page, offset, count);
685e7d39069STrond Myklebust 	nfs_mark_uptodate(page, req->wb_pgbase, req->wb_bytes);
686a6305ddbSTrond Myklebust 	nfs_mark_request_dirty(req);
687e7d39069STrond Myklebust 	nfs_clear_page_tag_locked(req);
688e7d39069STrond Myklebust 	return 0;
689e7d39069STrond Myklebust }
690e7d39069STrond Myklebust 
6911da177e4SLinus Torvalds int nfs_flush_incompatible(struct file *file, struct page *page)
6921da177e4SLinus Torvalds {
693cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
6941da177e4SLinus Torvalds 	struct nfs_page	*req;
6951a54533eSTrond Myklebust 	int do_flush, status;
6961da177e4SLinus Torvalds 	/*
6971da177e4SLinus Torvalds 	 * Look for a request corresponding to this page. If there
6981da177e4SLinus Torvalds 	 * is one, and it belongs to another file, we flush it out
6991da177e4SLinus Torvalds 	 * before we try to copy anything into the page. Do this
7001da177e4SLinus Torvalds 	 * due to the lack of an ACCESS-type call in NFSv2.
7011da177e4SLinus Torvalds 	 * Also do the same if we find a request from an existing
7021da177e4SLinus Torvalds 	 * dropped page.
7031da177e4SLinus Torvalds 	 */
7041a54533eSTrond Myklebust 	do {
705277459d2STrond Myklebust 		req = nfs_page_find_request(page);
7061a54533eSTrond Myklebust 		if (req == NULL)
7071a54533eSTrond Myklebust 			return 0;
708f11ac8dbSTrond Myklebust 		do_flush = req->wb_page != page || req->wb_context != ctx ||
709f11ac8dbSTrond Myklebust 			req->wb_lock_context->lockowner != current->files ||
710f11ac8dbSTrond Myklebust 			req->wb_lock_context->pid != current->tgid;
7111da177e4SLinus Torvalds 		nfs_release_request(req);
7121a54533eSTrond Myklebust 		if (!do_flush)
7131a54533eSTrond Myklebust 			return 0;
714277459d2STrond Myklebust 		status = nfs_wb_page(page->mapping->host, page);
7151a54533eSTrond Myklebust 	} while (status == 0);
7161a54533eSTrond Myklebust 	return status;
7171da177e4SLinus Torvalds }
7181da177e4SLinus Torvalds 
7191da177e4SLinus Torvalds /*
7205d47a356STrond Myklebust  * If the page cache is marked as unsafe or invalid, then we can't rely on
7215d47a356STrond Myklebust  * the PageUptodate() flag. In this case, we will need to turn off
7225d47a356STrond Myklebust  * write optimisations that depend on the page contents being correct.
7235d47a356STrond Myklebust  */
7245d47a356STrond Myklebust static int nfs_write_pageuptodate(struct page *page, struct inode *inode)
7255d47a356STrond Myklebust {
7265d47a356STrond Myklebust 	return PageUptodate(page) &&
7275d47a356STrond Myklebust 		!(NFS_I(inode)->cache_validity & (NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_DATA));
7285d47a356STrond Myklebust }
7295d47a356STrond Myklebust 
7305d47a356STrond Myklebust /*
7311da177e4SLinus Torvalds  * Update and possibly write a cached page of an NFS file.
7321da177e4SLinus Torvalds  *
7331da177e4SLinus Torvalds  * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
7341da177e4SLinus Torvalds  * things with a page scheduled for an RPC call (e.g. invalidate it).
7351da177e4SLinus Torvalds  */
7361da177e4SLinus Torvalds int nfs_updatepage(struct file *file, struct page *page,
7371da177e4SLinus Torvalds 		unsigned int offset, unsigned int count)
7381da177e4SLinus Torvalds {
739cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
7401da177e4SLinus Torvalds 	struct inode	*inode = page->mapping->host;
7411da177e4SLinus Torvalds 	int		status = 0;
7421da177e4SLinus Torvalds 
74391d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
74491d5b470SChuck Lever 
74548186c7dSChuck Lever 	dprintk("NFS:       nfs_updatepage(%s/%s %d@%lld)\n",
74601cce933SJosef "Jeff" Sipek 		file->f_path.dentry->d_parent->d_name.name,
74701cce933SJosef "Jeff" Sipek 		file->f_path.dentry->d_name.name, count,
7480bbacc40SChuck Lever 		(long long)(page_offset(page) + offset));
7491da177e4SLinus Torvalds 
7501da177e4SLinus Torvalds 	/* If we're not using byte range locks, and we know the page
7515d47a356STrond Myklebust 	 * is up to date, it may be more efficient to extend the write
7525d47a356STrond Myklebust 	 * to cover the entire page in order to avoid fragmentation
7535d47a356STrond Myklebust 	 * inefficiencies.
7541da177e4SLinus Torvalds 	 */
7555d47a356STrond Myklebust 	if (nfs_write_pageuptodate(page, inode) &&
7565d47a356STrond Myklebust 			inode->i_flock == NULL &&
7576b2f3d1fSChristoph Hellwig 			!(file->f_flags & O_DSYNC)) {
75849a70f27STrond Myklebust 		count = max(count + offset, nfs_page_length(page));
7591da177e4SLinus Torvalds 		offset = 0;
7601da177e4SLinus Torvalds 	}
7611da177e4SLinus Torvalds 
762e21195a7STrond Myklebust 	status = nfs_writepage_setup(ctx, page, offset, count);
76303fa9e84STrond Myklebust 	if (status < 0)
76403fa9e84STrond Myklebust 		nfs_set_pageerror(page);
7651da177e4SLinus Torvalds 
76648186c7dSChuck Lever 	dprintk("NFS:       nfs_updatepage returns %d (isize %lld)\n",
7671da177e4SLinus Torvalds 			status, (long long)i_size_read(inode));
7681da177e4SLinus Torvalds 	return status;
7691da177e4SLinus Torvalds }
7701da177e4SLinus Torvalds 
771a861a1e1SFred Isaman static void nfs_writepage_release(struct nfs_page *req,
772a861a1e1SFred Isaman 				  struct nfs_write_data *data)
7731da177e4SLinus Torvalds {
774a6305ddbSTrond Myklebust 	struct page *page = req->wb_page;
7758e821cadSTrond Myklebust 
776a861a1e1SFred Isaman 	if (PageError(req->wb_page) || !nfs_reschedule_unstable_write(req, data))
7771da177e4SLinus Torvalds 		nfs_inode_remove_request(req);
7789fd367f0STrond Myklebust 	nfs_clear_page_tag_locked(req);
779a6305ddbSTrond Myklebust 	nfs_end_page_writeback(page);
7801da177e4SLinus Torvalds }
7811da177e4SLinus Torvalds 
7823ff7576dSTrond Myklebust static int flush_task_priority(int how)
7831da177e4SLinus Torvalds {
7841da177e4SLinus Torvalds 	switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
7851da177e4SLinus Torvalds 		case FLUSH_HIGHPRI:
7861da177e4SLinus Torvalds 			return RPC_PRIORITY_HIGH;
7871da177e4SLinus Torvalds 		case FLUSH_LOWPRI:
7881da177e4SLinus Torvalds 			return RPC_PRIORITY_LOW;
7891da177e4SLinus Torvalds 	}
7901da177e4SLinus Torvalds 	return RPC_PRIORITY_NORMAL;
7911da177e4SLinus Torvalds }
7921da177e4SLinus Torvalds 
793a69aef14SFred Isaman int nfs_initiate_write(struct nfs_write_data *data,
794d138d5d1SAndy Adamson 		       struct rpc_clnt *clnt,
795788e7a89STrond Myklebust 		       const struct rpc_call_ops *call_ops,
7961da177e4SLinus Torvalds 		       int how)
7971da177e4SLinus Torvalds {
798d138d5d1SAndy Adamson 	struct inode *inode = data->inode;
7993ff7576dSTrond Myklebust 	int priority = flush_task_priority(how);
80007737691STrond Myklebust 	struct rpc_task *task;
801bdc7f021STrond Myklebust 	struct rpc_message msg = {
802bdc7f021STrond Myklebust 		.rpc_argp = &data->args,
803bdc7f021STrond Myklebust 		.rpc_resp = &data->res,
804d138d5d1SAndy Adamson 		.rpc_cred = data->cred,
805bdc7f021STrond Myklebust 	};
80684115e1cSTrond Myklebust 	struct rpc_task_setup task_setup_data = {
807d138d5d1SAndy Adamson 		.rpc_client = clnt,
80807737691STrond Myklebust 		.task = &data->task,
809bdc7f021STrond Myklebust 		.rpc_message = &msg,
81084115e1cSTrond Myklebust 		.callback_ops = call_ops,
81184115e1cSTrond Myklebust 		.callback_data = data,
812101070caSTrond Myklebust 		.workqueue = nfsiod_workqueue,
8132c61be0aSTrond Myklebust 		.flags = RPC_TASK_ASYNC,
8143ff7576dSTrond Myklebust 		.priority = priority,
81584115e1cSTrond Myklebust 	};
8162c61be0aSTrond Myklebust 	int ret = 0;
8171da177e4SLinus Torvalds 
818d138d5d1SAndy Adamson 	/* Set up the initial task struct.  */
819d138d5d1SAndy Adamson 	NFS_PROTO(inode)->write_setup(data, &msg);
820d138d5d1SAndy Adamson 
821d138d5d1SAndy Adamson 	dprintk("NFS: %5u initiated write call "
822d138d5d1SAndy Adamson 		"(req %s/%lld, %u bytes @ offset %llu)\n",
823d138d5d1SAndy Adamson 		data->task.tk_pid,
824d138d5d1SAndy Adamson 		inode->i_sb->s_id,
825d138d5d1SAndy Adamson 		(long long)NFS_FILEID(inode),
826d138d5d1SAndy Adamson 		data->args.count,
827d138d5d1SAndy Adamson 		(unsigned long long)data->args.offset);
828d138d5d1SAndy Adamson 
829d138d5d1SAndy Adamson 	task = rpc_run_task(&task_setup_data);
830d138d5d1SAndy Adamson 	if (IS_ERR(task)) {
831d138d5d1SAndy Adamson 		ret = PTR_ERR(task);
832d138d5d1SAndy Adamson 		goto out;
833d138d5d1SAndy Adamson 	}
834d138d5d1SAndy Adamson 	if (how & FLUSH_SYNC) {
835d138d5d1SAndy Adamson 		ret = rpc_wait_for_completion_task(task);
836d138d5d1SAndy Adamson 		if (ret == 0)
837d138d5d1SAndy Adamson 			ret = task->tk_status;
838d138d5d1SAndy Adamson 	}
839d138d5d1SAndy Adamson 	rpc_put_task(task);
840d138d5d1SAndy Adamson out:
841d138d5d1SAndy Adamson 	return ret;
842d138d5d1SAndy Adamson }
843a69aef14SFred Isaman EXPORT_SYMBOL_GPL(nfs_initiate_write);
844d138d5d1SAndy Adamson 
845d138d5d1SAndy Adamson /*
846d138d5d1SAndy Adamson  * Set up the argument/result storage required for the RPC call.
847d138d5d1SAndy Adamson  */
8486e4efd56STrond Myklebust static void nfs_write_rpcsetup(struct nfs_page *req,
849d138d5d1SAndy Adamson 		struct nfs_write_data *data,
850d138d5d1SAndy Adamson 		unsigned int count, unsigned int offset,
851d138d5d1SAndy Adamson 		int how)
852d138d5d1SAndy Adamson {
853d138d5d1SAndy Adamson 	struct inode *inode = req->wb_context->path.dentry->d_inode;
854d138d5d1SAndy Adamson 
8551da177e4SLinus Torvalds 	/* Set up the RPC argument and reply structs
8561da177e4SLinus Torvalds 	 * NB: take care not to mess about with data->commit et al. */
8571da177e4SLinus Torvalds 
8581da177e4SLinus Torvalds 	data->req = req;
85988be9f99STrond Myklebust 	data->inode = inode = req->wb_context->path.dentry->d_inode;
860d138d5d1SAndy Adamson 	data->cred = req->wb_context->cred;
8611da177e4SLinus Torvalds 
8621da177e4SLinus Torvalds 	data->args.fh     = NFS_FH(inode);
8631da177e4SLinus Torvalds 	data->args.offset = req_offset(req) + offset;
8642bea038cSBoaz Harrosh 	/* pnfs_set_layoutcommit needs this */
8652bea038cSBoaz Harrosh 	data->mds_offset = data->args.offset;
8661da177e4SLinus Torvalds 	data->args.pgbase = req->wb_pgbase + offset;
8671da177e4SLinus Torvalds 	data->args.pages  = data->pagevec;
8681da177e4SLinus Torvalds 	data->args.count  = count;
869383ba719STrond Myklebust 	data->args.context = get_nfs_open_context(req->wb_context);
870f11ac8dbSTrond Myklebust 	data->args.lock_context = req->wb_lock_context;
871bdc7f021STrond Myklebust 	data->args.stable  = NFS_UNSTABLE;
87287ed5eb4STrond Myklebust 	switch (how & (FLUSH_STABLE | FLUSH_COND_STABLE)) {
87387ed5eb4STrond Myklebust 	case 0:
87487ed5eb4STrond Myklebust 		break;
87587ed5eb4STrond Myklebust 	case FLUSH_COND_STABLE:
87687ed5eb4STrond Myklebust 		if (nfs_need_commit(NFS_I(inode)))
87787ed5eb4STrond Myklebust 			break;
87887ed5eb4STrond Myklebust 	default:
879bdc7f021STrond Myklebust 		data->args.stable = NFS_FILE_SYNC;
880bdc7f021STrond Myklebust 	}
8811da177e4SLinus Torvalds 
8821da177e4SLinus Torvalds 	data->res.fattr   = &data->fattr;
8831da177e4SLinus Torvalds 	data->res.count   = count;
8841da177e4SLinus Torvalds 	data->res.verf    = &data->verf;
8850e574af1STrond Myklebust 	nfs_fattr_init(&data->fattr);
8866e4efd56STrond Myklebust }
8871da177e4SLinus Torvalds 
8886e4efd56STrond Myklebust static int nfs_do_write(struct nfs_write_data *data,
8896e4efd56STrond Myklebust 		const struct rpc_call_ops *call_ops,
8906e4efd56STrond Myklebust 		struct pnfs_layout_segment *lseg,
8916e4efd56STrond Myklebust 		int how)
8926e4efd56STrond Myklebust {
8936e4efd56STrond Myklebust 	struct inode *inode = data->args.context->path.dentry->d_inode;
8946e4efd56STrond Myklebust 
8956e4efd56STrond Myklebust 	if (lseg != NULL) {
8966e4efd56STrond Myklebust 		data->lseg = get_lseg(lseg);
8976e4efd56STrond Myklebust 		if (pnfs_try_to_write_data(data, call_ops, how) == PNFS_ATTEMPTED)
8980382b744SAndy Adamson 			return 0;
8996e4efd56STrond Myklebust 		put_lseg(data->lseg);
9006e4efd56STrond Myklebust 		data->lseg = NULL;
9016e4efd56STrond Myklebust 	}
9020382b744SAndy Adamson 
903d138d5d1SAndy Adamson 	return nfs_initiate_write(data, NFS_CLIENT(inode), call_ops, how);
9041da177e4SLinus Torvalds }
9051da177e4SLinus Torvalds 
906275acaafSTrond Myklebust static int nfs_do_multiple_writes(struct list_head *head,
907275acaafSTrond Myklebust 		const struct rpc_call_ops *call_ops,
908275acaafSTrond Myklebust 		struct pnfs_layout_segment *lseg,
909275acaafSTrond Myklebust 		int how)
910275acaafSTrond Myklebust {
911275acaafSTrond Myklebust 	struct nfs_write_data *data;
912275acaafSTrond Myklebust 	int ret = 0;
913275acaafSTrond Myklebust 
914275acaafSTrond Myklebust 	while (!list_empty(head)) {
915275acaafSTrond Myklebust 		int ret2;
916275acaafSTrond Myklebust 
917275acaafSTrond Myklebust 		data = list_entry(head->next, struct nfs_write_data, list);
918275acaafSTrond Myklebust 		list_del_init(&data->list);
919275acaafSTrond Myklebust 
920275acaafSTrond Myklebust 		ret2 = nfs_do_write(data, call_ops, lseg, how);
921275acaafSTrond Myklebust 		 if (ret == 0)
922275acaafSTrond Myklebust 			 ret = ret2;
923275acaafSTrond Myklebust 	}
924275acaafSTrond Myklebust 	return ret;
925275acaafSTrond Myklebust }
926275acaafSTrond Myklebust 
9276d884e8fSFred /* If a nfs_flush_* function fails, it should remove reqs from @head and
9286d884e8fSFred  * call this on each, which will prepare them to be retried on next
9296d884e8fSFred  * writeback using standard nfs.
9306d884e8fSFred  */
9316d884e8fSFred static void nfs_redirty_request(struct nfs_page *req)
9326d884e8fSFred {
933a6305ddbSTrond Myklebust 	struct page *page = req->wb_page;
934a6305ddbSTrond Myklebust 
9356d884e8fSFred 	nfs_mark_request_dirty(req);
9366d884e8fSFred 	nfs_clear_page_tag_locked(req);
937a6305ddbSTrond Myklebust 	nfs_end_page_writeback(page);
9386d884e8fSFred }
9396d884e8fSFred 
9401da177e4SLinus Torvalds /*
9411da177e4SLinus Torvalds  * Generate multiple small requests to write out a single
9421da177e4SLinus Torvalds  * contiguous dirty area on one page.
9431da177e4SLinus Torvalds  */
944275acaafSTrond Myklebust static int nfs_flush_multi(struct nfs_pageio_descriptor *desc, struct list_head *res)
9451da177e4SLinus Torvalds {
946c76069bdSFred Isaman 	struct nfs_page *req = nfs_list_entry(desc->pg_list.next);
9471da177e4SLinus Torvalds 	struct page *page = req->wb_page;
9481da177e4SLinus Torvalds 	struct nfs_write_data *data;
949d097971dSTrond Myklebust 	size_t wsize = desc->pg_bsize, nbytes;
950e9f7bee1STrond Myklebust 	unsigned int offset;
9511da177e4SLinus Torvalds 	int requests = 0;
952dbae4c73STrond Myklebust 	int ret = 0;
9531da177e4SLinus Torvalds 
9541da177e4SLinus Torvalds 	nfs_list_remove_request(req);
9551da177e4SLinus Torvalds 
956b31268acSTrond Myklebust 	if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
957b31268acSTrond Myklebust 	    (desc->pg_moreio || NFS_I(desc->pg_inode)->ncommit ||
958b31268acSTrond Myklebust 	     desc->pg_count > wsize))
959b31268acSTrond Myklebust 		desc->pg_ioflags &= ~FLUSH_COND_STABLE;
960b31268acSTrond Myklebust 
961b31268acSTrond Myklebust 
962275acaafSTrond Myklebust 	offset = 0;
963c76069bdSFred Isaman 	nbytes = desc->pg_count;
964e9f7bee1STrond Myklebust 	do {
965e9f7bee1STrond Myklebust 		size_t len = min(nbytes, wsize);
966e9f7bee1STrond Myklebust 
9678d5658c9STrond Myklebust 		data = nfs_writedata_alloc(1);
9681da177e4SLinus Torvalds 		if (!data)
9691da177e4SLinus Torvalds 			goto out_bad;
970275acaafSTrond Myklebust 		data->pagevec[0] = page;
971275acaafSTrond Myklebust 		nfs_write_rpcsetup(req, data, wsize, offset, desc->pg_ioflags);
972275acaafSTrond Myklebust 		list_add(&data->list, res);
9731da177e4SLinus Torvalds 		requests++;
974e9f7bee1STrond Myklebust 		nbytes -= len;
975275acaafSTrond Myklebust 		offset += len;
976e9f7bee1STrond Myklebust 	} while (nbytes != 0);
9771da177e4SLinus Torvalds 	atomic_set(&req->wb_complete, requests);
97850828d7eSTrond Myklebust 	desc->pg_rpc_callops = &nfs_write_partial_ops;
979dbae4c73STrond Myklebust 	return ret;
9801da177e4SLinus Torvalds 
9811da177e4SLinus Torvalds out_bad:
982275acaafSTrond Myklebust 	while (!list_empty(res)) {
983275acaafSTrond Myklebust 		data = list_entry(res->next, struct nfs_write_data, list);
9846e4efd56STrond Myklebust 		list_del(&data->list);
9850da2a4acSFred Isaman 		nfs_writedata_free(data);
9861da177e4SLinus Torvalds 	}
98761822ab5STrond Myklebust 	nfs_redirty_request(req);
9881da177e4SLinus Torvalds 	return -ENOMEM;
9891da177e4SLinus Torvalds }
9901da177e4SLinus Torvalds 
9911da177e4SLinus Torvalds /*
9921da177e4SLinus Torvalds  * Create an RPC task for the given write request and kick it.
9931da177e4SLinus Torvalds  * The page must have been locked by the caller.
9941da177e4SLinus Torvalds  *
9951da177e4SLinus Torvalds  * It may happen that the page we're passed is not marked dirty.
9961da177e4SLinus Torvalds  * This is the case if nfs_updatepage detects a conflicting request
9971da177e4SLinus Torvalds  * that has been written but not committed.
9981da177e4SLinus Torvalds  */
999275acaafSTrond Myklebust static int nfs_flush_one(struct nfs_pageio_descriptor *desc, struct list_head *res)
10001da177e4SLinus Torvalds {
10011da177e4SLinus Torvalds 	struct nfs_page		*req;
10021da177e4SLinus Torvalds 	struct page		**pages;
10031da177e4SLinus Torvalds 	struct nfs_write_data	*data;
1004c76069bdSFred Isaman 	struct list_head *head = &desc->pg_list;
10053b609184SPeng Tao 	int ret = 0;
10061da177e4SLinus Torvalds 
1007c76069bdSFred Isaman 	data = nfs_writedata_alloc(nfs_page_array_len(desc->pg_base,
1008c76069bdSFred Isaman 						      desc->pg_count));
100944b83799SFred Isaman 	if (!data) {
101044b83799SFred Isaman 		while (!list_empty(head)) {
101144b83799SFred Isaman 			req = nfs_list_entry(head->next);
101244b83799SFred Isaman 			nfs_list_remove_request(req);
101344b83799SFred Isaman 			nfs_redirty_request(req);
101444b83799SFred Isaman 		}
101544b83799SFred Isaman 		ret = -ENOMEM;
101644b83799SFred Isaman 		goto out;
101744b83799SFred Isaman 	}
10181da177e4SLinus Torvalds 	pages = data->pagevec;
10191da177e4SLinus Torvalds 	while (!list_empty(head)) {
10201da177e4SLinus Torvalds 		req = nfs_list_entry(head->next);
10211da177e4SLinus Torvalds 		nfs_list_remove_request(req);
10221da177e4SLinus Torvalds 		nfs_list_add_request(req, &data->pages);
10231da177e4SLinus Torvalds 		ClearPageError(req->wb_page);
10241da177e4SLinus Torvalds 		*pages++ = req->wb_page;
10251da177e4SLinus Torvalds 	}
10261da177e4SLinus Torvalds 	req = nfs_list_entry(data->pages.next);
10271da177e4SLinus Torvalds 
1028b31268acSTrond Myklebust 	if ((desc->pg_ioflags & FLUSH_COND_STABLE) &&
1029b31268acSTrond Myklebust 	    (desc->pg_moreio || NFS_I(desc->pg_inode)->ncommit))
1030b31268acSTrond Myklebust 		desc->pg_ioflags &= ~FLUSH_COND_STABLE;
1031b31268acSTrond Myklebust 
10321da177e4SLinus Torvalds 	/* Set up the argument struct */
10336e4efd56STrond Myklebust 	nfs_write_rpcsetup(req, data, desc->pg_count, 0, desc->pg_ioflags);
1034275acaafSTrond Myklebust 	list_add(&data->list, res);
103550828d7eSTrond Myklebust 	desc->pg_rpc_callops = &nfs_write_full_ops;
103644b83799SFred Isaman out:
103744b83799SFred Isaman 	return ret;
10381da177e4SLinus Torvalds }
10391da177e4SLinus Torvalds 
10401751c363STrond Myklebust int nfs_generic_pg_writepages(struct nfs_pageio_descriptor *desc)
10411751c363STrond Myklebust {
1042275acaafSTrond Myklebust 	LIST_HEAD(head);
1043275acaafSTrond Myklebust 	int ret;
1044275acaafSTrond Myklebust 
104550828d7eSTrond Myklebust 	if (desc->pg_bsize < PAGE_CACHE_SIZE)
1046275acaafSTrond Myklebust 		ret = nfs_flush_multi(desc, &head);
104750828d7eSTrond Myklebust 	else
1048275acaafSTrond Myklebust 		ret = nfs_flush_one(desc, &head);
1049275acaafSTrond Myklebust 	if (ret == 0)
105050828d7eSTrond Myklebust 		ret = nfs_do_multiple_writes(&head, desc->pg_rpc_callops,
105150828d7eSTrond Myklebust 				desc->pg_lseg, desc->pg_ioflags);
1052275acaafSTrond Myklebust 	put_lseg(desc->pg_lseg);
1053275acaafSTrond Myklebust 	desc->pg_lseg = NULL;
1054275acaafSTrond Myklebust 	return ret;
10551751c363STrond Myklebust }
10561751c363STrond Myklebust EXPORT_SYMBOL_GPL(nfs_generic_pg_writepages);
10571751c363STrond Myklebust 
10581751c363STrond Myklebust static const struct nfs_pageio_ops nfs_pageio_write_ops = {
10591751c363STrond Myklebust 	.pg_test = nfs_generic_pg_test,
10601751c363STrond Myklebust 	.pg_doio = nfs_generic_pg_writepages,
10611751c363STrond Myklebust };
10621751c363STrond Myklebust 
1063e885de1aSTrond Myklebust void nfs_pageio_init_write_mds(struct nfs_pageio_descriptor *pgio,
10641751c363STrond Myklebust 				  struct inode *inode, int ioflags)
10651751c363STrond Myklebust {
10661751c363STrond Myklebust 	nfs_pageio_init(pgio, inode, &nfs_pageio_write_ops,
10671751c363STrond Myklebust 				NFS_SERVER(inode)->wsize, ioflags);
10681751c363STrond Myklebust }
10697c24d948SAndy Adamson EXPORT_SYMBOL_GPL(nfs_pageio_init_write_mds);
10701751c363STrond Myklebust 
1071c63c7b05STrond Myklebust static void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1072c63c7b05STrond Myklebust 				  struct inode *inode, int ioflags)
10731da177e4SLinus Torvalds {
10741751c363STrond Myklebust 	if (!pnfs_pageio_init_write(pgio, inode, ioflags))
10751751c363STrond Myklebust 		nfs_pageio_init_write_mds(pgio, inode, ioflags);
10761da177e4SLinus Torvalds }
10771da177e4SLinus Torvalds 
10781da177e4SLinus Torvalds /*
10791da177e4SLinus Torvalds  * Handle a write reply that flushed part of a page.
10801da177e4SLinus Torvalds  */
1081788e7a89STrond Myklebust static void nfs_writeback_done_partial(struct rpc_task *task, void *calldata)
10821da177e4SLinus Torvalds {
1083788e7a89STrond Myklebust 	struct nfs_write_data	*data = calldata;
10841da177e4SLinus Torvalds 
108548186c7dSChuck Lever 	dprintk("NFS: %5u write(%s/%lld %d@%lld)",
108648186c7dSChuck Lever 		task->tk_pid,
108748186c7dSChuck Lever 		data->req->wb_context->path.dentry->d_inode->i_sb->s_id,
108848186c7dSChuck Lever 		(long long)
108948186c7dSChuck Lever 		  NFS_FILEID(data->req->wb_context->path.dentry->d_inode),
109048186c7dSChuck Lever 		data->req->wb_bytes, (long long)req_offset(data->req));
10911da177e4SLinus Torvalds 
1092c9d8f89dSTrond Myklebust 	nfs_writeback_done(task, data);
1093c9d8f89dSTrond Myklebust }
1094788e7a89STrond Myklebust 
1095c9d8f89dSTrond Myklebust static void nfs_writeback_release_partial(void *calldata)
1096c9d8f89dSTrond Myklebust {
1097c9d8f89dSTrond Myklebust 	struct nfs_write_data	*data = calldata;
1098c9d8f89dSTrond Myklebust 	struct nfs_page		*req = data->req;
1099c9d8f89dSTrond Myklebust 	struct page		*page = req->wb_page;
1100c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1101c9d8f89dSTrond Myklebust 
1102c9d8f89dSTrond Myklebust 	if (status < 0) {
1103a301b777STrond Myklebust 		nfs_set_pageerror(page);
1104c9d8f89dSTrond Myklebust 		nfs_context_set_write_error(req->wb_context, status);
1105c9d8f89dSTrond Myklebust 		dprintk(", error = %d\n", status);
11068e821cadSTrond Myklebust 		goto out;
11078e821cadSTrond Myklebust 	}
11088e821cadSTrond Myklebust 
11098e821cadSTrond Myklebust 	if (nfs_write_need_commit(data)) {
1110587142f8STrond Myklebust 		struct inode *inode = page->mapping->host;
11118e821cadSTrond Myklebust 
1112587142f8STrond Myklebust 		spin_lock(&inode->i_lock);
11138e821cadSTrond Myklebust 		if (test_bit(PG_NEED_RESCHED, &req->wb_flags)) {
11148e821cadSTrond Myklebust 			/* Do nothing we need to resend the writes */
11158e821cadSTrond Myklebust 		} else if (!test_and_set_bit(PG_NEED_COMMIT, &req->wb_flags)) {
11161da177e4SLinus Torvalds 			memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
11171da177e4SLinus Torvalds 			dprintk(" defer commit\n");
11181da177e4SLinus Torvalds 		} else if (memcmp(&req->wb_verf, &data->verf, sizeof(req->wb_verf))) {
11198e821cadSTrond Myklebust 			set_bit(PG_NEED_RESCHED, &req->wb_flags);
11208e821cadSTrond Myklebust 			clear_bit(PG_NEED_COMMIT, &req->wb_flags);
11211da177e4SLinus Torvalds 			dprintk(" server reboot detected\n");
11221da177e4SLinus Torvalds 		}
1123587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
11241da177e4SLinus Torvalds 	} else
11251da177e4SLinus Torvalds 		dprintk(" OK\n");
11261da177e4SLinus Torvalds 
11278e821cadSTrond Myklebust out:
11281da177e4SLinus Torvalds 	if (atomic_dec_and_test(&req->wb_complete))
1129a861a1e1SFred Isaman 		nfs_writepage_release(req, data);
1130c9d8f89dSTrond Myklebust 	nfs_writedata_release(calldata);
11311da177e4SLinus Torvalds }
11321da177e4SLinus Torvalds 
1133def6ed7eSAndy Adamson #if defined(CONFIG_NFS_V4_1)
1134def6ed7eSAndy Adamson void nfs_write_prepare(struct rpc_task *task, void *calldata)
1135def6ed7eSAndy Adamson {
1136def6ed7eSAndy Adamson 	struct nfs_write_data *data = calldata;
1137def6ed7eSAndy Adamson 
1138035168abSTrond Myklebust 	if (nfs4_setup_sequence(NFS_SERVER(data->inode),
1139035168abSTrond Myklebust 				&data->args.seq_args,
1140def6ed7eSAndy Adamson 				&data->res.seq_res, 1, task))
1141def6ed7eSAndy Adamson 		return;
1142def6ed7eSAndy Adamson 	rpc_call_start(task);
1143def6ed7eSAndy Adamson }
1144def6ed7eSAndy Adamson #endif /* CONFIG_NFS_V4_1 */
1145def6ed7eSAndy Adamson 
1146788e7a89STrond Myklebust static const struct rpc_call_ops nfs_write_partial_ops = {
1147def6ed7eSAndy Adamson #if defined(CONFIG_NFS_V4_1)
1148def6ed7eSAndy Adamson 	.rpc_call_prepare = nfs_write_prepare,
1149def6ed7eSAndy Adamson #endif /* CONFIG_NFS_V4_1 */
1150788e7a89STrond Myklebust 	.rpc_call_done = nfs_writeback_done_partial,
1151c9d8f89dSTrond Myklebust 	.rpc_release = nfs_writeback_release_partial,
1152788e7a89STrond Myklebust };
1153788e7a89STrond Myklebust 
11541da177e4SLinus Torvalds /*
11551da177e4SLinus Torvalds  * Handle a write reply that flushes a whole page.
11561da177e4SLinus Torvalds  *
11571da177e4SLinus Torvalds  * FIXME: There is an inherent race with invalidate_inode_pages and
11581da177e4SLinus Torvalds  *	  writebacks since the page->count is kept > 1 for as long
11591da177e4SLinus Torvalds  *	  as the page has a write request pending.
11601da177e4SLinus Torvalds  */
1161788e7a89STrond Myklebust static void nfs_writeback_done_full(struct rpc_task *task, void *calldata)
11621da177e4SLinus Torvalds {
1163788e7a89STrond Myklebust 	struct nfs_write_data	*data = calldata;
11641da177e4SLinus Torvalds 
1165c9d8f89dSTrond Myklebust 	nfs_writeback_done(task, data);
1166c9d8f89dSTrond Myklebust }
1167c9d8f89dSTrond Myklebust 
1168c9d8f89dSTrond Myklebust static void nfs_writeback_release_full(void *calldata)
1169c9d8f89dSTrond Myklebust {
1170c9d8f89dSTrond Myklebust 	struct nfs_write_data	*data = calldata;
1171c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1172788e7a89STrond Myklebust 
11731da177e4SLinus Torvalds 	/* Update attributes as result of writeback. */
11741da177e4SLinus Torvalds 	while (!list_empty(&data->pages)) {
1175c9d8f89dSTrond Myklebust 		struct nfs_page *req = nfs_list_entry(data->pages.next);
1176c9d8f89dSTrond Myklebust 		struct page *page = req->wb_page;
1177c9d8f89dSTrond Myklebust 
11781da177e4SLinus Torvalds 		nfs_list_remove_request(req);
11791da177e4SLinus Torvalds 
118048186c7dSChuck Lever 		dprintk("NFS: %5u write (%s/%lld %d@%lld)",
118148186c7dSChuck Lever 			data->task.tk_pid,
118288be9f99STrond Myklebust 			req->wb_context->path.dentry->d_inode->i_sb->s_id,
118388be9f99STrond Myklebust 			(long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
11841da177e4SLinus Torvalds 			req->wb_bytes,
11851da177e4SLinus Torvalds 			(long long)req_offset(req));
11861da177e4SLinus Torvalds 
1187c9d8f89dSTrond Myklebust 		if (status < 0) {
1188a301b777STrond Myklebust 			nfs_set_pageerror(page);
1189c9d8f89dSTrond Myklebust 			nfs_context_set_write_error(req->wb_context, status);
1190c9d8f89dSTrond Myklebust 			dprintk(", error = %d\n", status);
11918e821cadSTrond Myklebust 			goto remove_request;
11921da177e4SLinus Torvalds 		}
11931da177e4SLinus Torvalds 
11948e821cadSTrond Myklebust 		if (nfs_write_need_commit(data)) {
11951da177e4SLinus Torvalds 			memcpy(&req->wb_verf, &data->verf, sizeof(req->wb_verf));
1196a861a1e1SFred Isaman 			nfs_mark_request_commit(req, data->lseg);
11971da177e4SLinus Torvalds 			dprintk(" marked for commit\n");
11988e821cadSTrond Myklebust 			goto next;
11998e821cadSTrond Myklebust 		}
12008e821cadSTrond Myklebust 		dprintk(" OK\n");
12018e821cadSTrond Myklebust remove_request:
12021da177e4SLinus Torvalds 		nfs_inode_remove_request(req);
12031da177e4SLinus Torvalds 	next:
12049fd367f0STrond Myklebust 		nfs_clear_page_tag_locked(req);
1205a6305ddbSTrond Myklebust 		nfs_end_page_writeback(page);
12061da177e4SLinus Torvalds 	}
1207c9d8f89dSTrond Myklebust 	nfs_writedata_release(calldata);
12081da177e4SLinus Torvalds }
12091da177e4SLinus Torvalds 
1210788e7a89STrond Myklebust static const struct rpc_call_ops nfs_write_full_ops = {
1211def6ed7eSAndy Adamson #if defined(CONFIG_NFS_V4_1)
1212def6ed7eSAndy Adamson 	.rpc_call_prepare = nfs_write_prepare,
1213def6ed7eSAndy Adamson #endif /* CONFIG_NFS_V4_1 */
1214788e7a89STrond Myklebust 	.rpc_call_done = nfs_writeback_done_full,
1215c9d8f89dSTrond Myklebust 	.rpc_release = nfs_writeback_release_full,
1216788e7a89STrond Myklebust };
1217788e7a89STrond Myklebust 
1218788e7a89STrond Myklebust 
12191da177e4SLinus Torvalds /*
12201da177e4SLinus Torvalds  * This function is called when the WRITE call is complete.
12211da177e4SLinus Torvalds  */
122213602896SFred Isaman void nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data)
12231da177e4SLinus Torvalds {
12241da177e4SLinus Torvalds 	struct nfs_writeargs	*argp = &data->args;
12251da177e4SLinus Torvalds 	struct nfs_writeres	*resp = &data->res;
1226eedc020eSAndy Adamson 	struct nfs_server	*server = NFS_SERVER(data->inode);
1227788e7a89STrond Myklebust 	int status;
12281da177e4SLinus Torvalds 
1229a3f565b1SChuck Lever 	dprintk("NFS: %5u nfs_writeback_done (status %d)\n",
12301da177e4SLinus Torvalds 		task->tk_pid, task->tk_status);
12311da177e4SLinus Torvalds 
1232f551e44fSChuck Lever 	/*
1233f551e44fSChuck Lever 	 * ->write_done will attempt to use post-op attributes to detect
1234f551e44fSChuck Lever 	 * conflicting writes by other clients.  A strict interpretation
1235f551e44fSChuck Lever 	 * of close-to-open would allow us to continue caching even if
1236f551e44fSChuck Lever 	 * another writer had changed the file, but some applications
1237f551e44fSChuck Lever 	 * depend on tighter cache coherency when writing.
1238f551e44fSChuck Lever 	 */
1239788e7a89STrond Myklebust 	status = NFS_PROTO(data->inode)->write_done(task, data);
1240788e7a89STrond Myklebust 	if (status != 0)
124113602896SFred Isaman 		return;
124291d5b470SChuck Lever 	nfs_add_stats(data->inode, NFSIOS_SERVERWRITTENBYTES, resp->count);
124391d5b470SChuck Lever 
12441da177e4SLinus Torvalds #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
12451da177e4SLinus Torvalds 	if (resp->verf->committed < argp->stable && task->tk_status >= 0) {
12461da177e4SLinus Torvalds 		/* We tried a write call, but the server did not
12471da177e4SLinus Torvalds 		 * commit data to stable storage even though we
12481da177e4SLinus Torvalds 		 * requested it.
12491da177e4SLinus Torvalds 		 * Note: There is a known bug in Tru64 < 5.0 in which
12501da177e4SLinus Torvalds 		 *	 the server reports NFS_DATA_SYNC, but performs
12511da177e4SLinus Torvalds 		 *	 NFS_FILE_SYNC. We therefore implement this checking
12521da177e4SLinus Torvalds 		 *	 as a dprintk() in order to avoid filling syslog.
12531da177e4SLinus Torvalds 		 */
12541da177e4SLinus Torvalds 		static unsigned long    complain;
12551da177e4SLinus Torvalds 
1256a69aef14SFred Isaman 		/* Note this will print the MDS for a DS write */
12571da177e4SLinus Torvalds 		if (time_before(complain, jiffies)) {
12581da177e4SLinus Torvalds 			dprintk("NFS:       faulty NFS server %s:"
12591da177e4SLinus Torvalds 				" (committed = %d) != (stable = %d)\n",
1260eedc020eSAndy Adamson 				server->nfs_client->cl_hostname,
12611da177e4SLinus Torvalds 				resp->verf->committed, argp->stable);
12621da177e4SLinus Torvalds 			complain = jiffies + 300 * HZ;
12631da177e4SLinus Torvalds 		}
12641da177e4SLinus Torvalds 	}
12651da177e4SLinus Torvalds #endif
12661da177e4SLinus Torvalds 	/* Is this a short write? */
12671da177e4SLinus Torvalds 	if (task->tk_status >= 0 && resp->count < argp->count) {
12681da177e4SLinus Torvalds 		static unsigned long    complain;
12691da177e4SLinus Torvalds 
127091d5b470SChuck Lever 		nfs_inc_stats(data->inode, NFSIOS_SHORTWRITE);
127191d5b470SChuck Lever 
12721da177e4SLinus Torvalds 		/* Has the server at least made some progress? */
12731da177e4SLinus Torvalds 		if (resp->count != 0) {
12741da177e4SLinus Torvalds 			/* Was this an NFSv2 write or an NFSv3 stable write? */
12751da177e4SLinus Torvalds 			if (resp->verf->committed != NFS_UNSTABLE) {
12761da177e4SLinus Torvalds 				/* Resend from where the server left off */
1277a69aef14SFred Isaman 				data->mds_offset += resp->count;
12781da177e4SLinus Torvalds 				argp->offset += resp->count;
12791da177e4SLinus Torvalds 				argp->pgbase += resp->count;
12801da177e4SLinus Torvalds 				argp->count -= resp->count;
12811da177e4SLinus Torvalds 			} else {
12821da177e4SLinus Torvalds 				/* Resend as a stable write in order to avoid
12831da177e4SLinus Torvalds 				 * headaches in the case of a server crash.
12841da177e4SLinus Torvalds 				 */
12851da177e4SLinus Torvalds 				argp->stable = NFS_FILE_SYNC;
12861da177e4SLinus Torvalds 			}
12870110ee15STrond Myklebust 			nfs_restart_rpc(task, server->nfs_client);
128813602896SFred Isaman 			return;
12891da177e4SLinus Torvalds 		}
12901da177e4SLinus Torvalds 		if (time_before(complain, jiffies)) {
12911da177e4SLinus Torvalds 			printk(KERN_WARNING
12921da177e4SLinus Torvalds 			       "NFS: Server wrote zero bytes, expected %u.\n",
12931da177e4SLinus Torvalds 					argp->count);
12941da177e4SLinus Torvalds 			complain = jiffies + 300 * HZ;
12951da177e4SLinus Torvalds 		}
12961da177e4SLinus Torvalds 		/* Can't do anything about it except throw an error. */
12971da177e4SLinus Torvalds 		task->tk_status = -EIO;
12981da177e4SLinus Torvalds 	}
129913602896SFred Isaman 	return;
13001da177e4SLinus Torvalds }
13011da177e4SLinus Torvalds 
13021da177e4SLinus Torvalds 
13031da177e4SLinus Torvalds #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
130471d0a611STrond Myklebust static int nfs_commit_set_lock(struct nfs_inode *nfsi, int may_wait)
130571d0a611STrond Myklebust {
1306b8413f98STrond Myklebust 	int ret;
1307b8413f98STrond Myklebust 
130871d0a611STrond Myklebust 	if (!test_and_set_bit(NFS_INO_COMMIT, &nfsi->flags))
130971d0a611STrond Myklebust 		return 1;
1310b8413f98STrond Myklebust 	if (!may_wait)
131171d0a611STrond Myklebust 		return 0;
1312b8413f98STrond Myklebust 	ret = out_of_line_wait_on_bit_lock(&nfsi->flags,
1313b8413f98STrond Myklebust 				NFS_INO_COMMIT,
1314b8413f98STrond Myklebust 				nfs_wait_bit_killable,
1315b8413f98STrond Myklebust 				TASK_KILLABLE);
1316b8413f98STrond Myklebust 	return (ret < 0) ? ret : 1;
131771d0a611STrond Myklebust }
131871d0a611STrond Myklebust 
1319e0c2b380SFred Isaman void nfs_commit_clear_lock(struct nfs_inode *nfsi)
132071d0a611STrond Myklebust {
132171d0a611STrond Myklebust 	clear_bit(NFS_INO_COMMIT, &nfsi->flags);
132271d0a611STrond Myklebust 	smp_mb__after_clear_bit();
132371d0a611STrond Myklebust 	wake_up_bit(&nfsi->flags, NFS_INO_COMMIT);
132471d0a611STrond Myklebust }
1325e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_clear_lock);
132671d0a611STrond Myklebust 
1327e0c2b380SFred Isaman void nfs_commitdata_release(void *data)
13281da177e4SLinus Torvalds {
1329383ba719STrond Myklebust 	struct nfs_write_data *wdata = data;
1330383ba719STrond Myklebust 
1331988b6dceSFred Isaman 	put_lseg(wdata->lseg);
1332383ba719STrond Myklebust 	put_nfs_open_context(wdata->args.context);
13331da177e4SLinus Torvalds 	nfs_commit_free(wdata);
13341da177e4SLinus Torvalds }
1335e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_release);
13361da177e4SLinus Torvalds 
1337e0c2b380SFred Isaman int nfs_initiate_commit(struct nfs_write_data *data, struct rpc_clnt *clnt,
13389ace33cdSFred Isaman 			const struct rpc_call_ops *call_ops,
1339788e7a89STrond Myklebust 			int how)
13401da177e4SLinus Torvalds {
134107737691STrond Myklebust 	struct rpc_task *task;
13429ace33cdSFred Isaman 	int priority = flush_task_priority(how);
1343bdc7f021STrond Myklebust 	struct rpc_message msg = {
1344bdc7f021STrond Myklebust 		.rpc_argp = &data->args,
1345bdc7f021STrond Myklebust 		.rpc_resp = &data->res,
13469ace33cdSFred Isaman 		.rpc_cred = data->cred,
1347bdc7f021STrond Myklebust 	};
134884115e1cSTrond Myklebust 	struct rpc_task_setup task_setup_data = {
134907737691STrond Myklebust 		.task = &data->task,
13509ace33cdSFred Isaman 		.rpc_client = clnt,
1351bdc7f021STrond Myklebust 		.rpc_message = &msg,
13529ace33cdSFred Isaman 		.callback_ops = call_ops,
135384115e1cSTrond Myklebust 		.callback_data = data,
1354101070caSTrond Myklebust 		.workqueue = nfsiod_workqueue,
13552c61be0aSTrond Myklebust 		.flags = RPC_TASK_ASYNC,
13563ff7576dSTrond Myklebust 		.priority = priority,
135784115e1cSTrond Myklebust 	};
1358788e7a89STrond Myklebust 	/* Set up the initial task struct.  */
13599ace33cdSFred Isaman 	NFS_PROTO(data->inode)->commit_setup(data, &msg);
13601da177e4SLinus Torvalds 
1361a3f565b1SChuck Lever 	dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid);
1362bdc7f021STrond Myklebust 
136307737691STrond Myklebust 	task = rpc_run_task(&task_setup_data);
1364dbae4c73STrond Myklebust 	if (IS_ERR(task))
1365dbae4c73STrond Myklebust 		return PTR_ERR(task);
1366d2224e7aSJeff Layton 	if (how & FLUSH_SYNC)
1367d2224e7aSJeff Layton 		rpc_wait_for_completion_task(task);
136807737691STrond Myklebust 	rpc_put_task(task);
1369dbae4c73STrond Myklebust 	return 0;
13701da177e4SLinus Torvalds }
1371e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_initiate_commit);
13721da177e4SLinus Torvalds 
13731da177e4SLinus Torvalds /*
13749ace33cdSFred Isaman  * Set up the argument/result storage required for the RPC call.
13759ace33cdSFred Isaman  */
1376e0c2b380SFred Isaman void nfs_init_commit(struct nfs_write_data *data,
1377988b6dceSFred Isaman 			    struct list_head *head,
1378988b6dceSFred Isaman 			    struct pnfs_layout_segment *lseg)
13799ace33cdSFred Isaman {
13809ace33cdSFred Isaman 	struct nfs_page *first = nfs_list_entry(head->next);
13819ace33cdSFred Isaman 	struct inode *inode = first->wb_context->path.dentry->d_inode;
13829ace33cdSFred Isaman 
13839ace33cdSFred Isaman 	/* Set up the RPC argument and reply structs
13849ace33cdSFred Isaman 	 * NB: take care not to mess about with data->commit et al. */
13859ace33cdSFred Isaman 
13869ace33cdSFred Isaman 	list_splice_init(head, &data->pages);
13879ace33cdSFred Isaman 
13889ace33cdSFred Isaman 	data->inode	  = inode;
13899ace33cdSFred Isaman 	data->cred	  = first->wb_context->cred;
1390988b6dceSFred Isaman 	data->lseg	  = lseg; /* reference transferred */
13919ace33cdSFred Isaman 	data->mds_ops     = &nfs_commit_ops;
13929ace33cdSFred Isaman 
13939ace33cdSFred Isaman 	data->args.fh     = NFS_FH(data->inode);
13949ace33cdSFred Isaman 	/* Note: we always request a commit of the entire inode */
13959ace33cdSFred Isaman 	data->args.offset = 0;
13969ace33cdSFred Isaman 	data->args.count  = 0;
13979ace33cdSFred Isaman 	data->args.context = get_nfs_open_context(first->wb_context);
13989ace33cdSFred Isaman 	data->res.count   = 0;
13999ace33cdSFred Isaman 	data->res.fattr   = &data->fattr;
14009ace33cdSFred Isaman 	data->res.verf    = &data->verf;
14019ace33cdSFred Isaman 	nfs_fattr_init(&data->fattr);
14029ace33cdSFred Isaman }
1403e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_commit);
14049ace33cdSFred Isaman 
1405e0c2b380SFred Isaman void nfs_retry_commit(struct list_head *page_list,
1406a861a1e1SFred Isaman 		      struct pnfs_layout_segment *lseg)
140764bfeb49SFred Isaman {
140864bfeb49SFred Isaman 	struct nfs_page *req;
140964bfeb49SFred Isaman 
141064bfeb49SFred Isaman 	while (!list_empty(page_list)) {
141164bfeb49SFred Isaman 		req = nfs_list_entry(page_list->next);
141264bfeb49SFred Isaman 		nfs_list_remove_request(req);
1413a861a1e1SFred Isaman 		nfs_mark_request_commit(req, lseg);
141464bfeb49SFred Isaman 		dec_zone_page_state(req->wb_page, NR_UNSTABLE_NFS);
141564bfeb49SFred Isaman 		dec_bdi_stat(req->wb_page->mapping->backing_dev_info,
141664bfeb49SFred Isaman 			     BDI_RECLAIMABLE);
141764bfeb49SFred Isaman 		nfs_clear_page_tag_locked(req);
141864bfeb49SFred Isaman 	}
141964bfeb49SFred Isaman }
1420e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_retry_commit);
142164bfeb49SFred Isaman 
14229ace33cdSFred Isaman /*
14231da177e4SLinus Torvalds  * Commit dirty pages
14241da177e4SLinus Torvalds  */
14251da177e4SLinus Torvalds static int
142640859d7eSChuck Lever nfs_commit_list(struct inode *inode, struct list_head *head, int how)
14271da177e4SLinus Torvalds {
14281da177e4SLinus Torvalds 	struct nfs_write_data	*data;
14291da177e4SLinus Torvalds 
1430c9d8f89dSTrond Myklebust 	data = nfs_commitdata_alloc();
14311da177e4SLinus Torvalds 
14321da177e4SLinus Torvalds 	if (!data)
14331da177e4SLinus Torvalds 		goto out_bad;
14341da177e4SLinus Torvalds 
14351da177e4SLinus Torvalds 	/* Set up the argument struct */
1436988b6dceSFred Isaman 	nfs_init_commit(data, head, NULL);
14379ace33cdSFred Isaman 	return nfs_initiate_commit(data, NFS_CLIENT(inode), data->mds_ops, how);
14381da177e4SLinus Torvalds  out_bad:
1439a861a1e1SFred Isaman 	nfs_retry_commit(head, NULL);
144071d0a611STrond Myklebust 	nfs_commit_clear_lock(NFS_I(inode));
14411da177e4SLinus Torvalds 	return -ENOMEM;
14421da177e4SLinus Torvalds }
14431da177e4SLinus Torvalds 
14441da177e4SLinus Torvalds /*
14451da177e4SLinus Torvalds  * COMMIT call returned
14461da177e4SLinus Torvalds  */
1447788e7a89STrond Myklebust static void nfs_commit_done(struct rpc_task *task, void *calldata)
14481da177e4SLinus Torvalds {
1449963d8fe5STrond Myklebust 	struct nfs_write_data	*data = calldata;
14501da177e4SLinus Torvalds 
1451a3f565b1SChuck Lever         dprintk("NFS: %5u nfs_commit_done (status %d)\n",
14521da177e4SLinus Torvalds                                 task->tk_pid, task->tk_status);
14531da177e4SLinus Torvalds 
1454788e7a89STrond Myklebust 	/* Call the NFS version-specific code */
1455c0d0e96bSTrond Myklebust 	NFS_PROTO(data->inode)->commit_done(task, data);
1456c9d8f89dSTrond Myklebust }
1457c9d8f89dSTrond Myklebust 
1458e0c2b380SFred Isaman void nfs_commit_release_pages(struct nfs_write_data *data)
1459c9d8f89dSTrond Myklebust {
1460c9d8f89dSTrond Myklebust 	struct nfs_page	*req;
1461c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1462788e7a89STrond Myklebust 
14631da177e4SLinus Torvalds 	while (!list_empty(&data->pages)) {
14641da177e4SLinus Torvalds 		req = nfs_list_entry(data->pages.next);
14651da177e4SLinus Torvalds 		nfs_list_remove_request(req);
1466e468bae9STrond Myklebust 		nfs_clear_request_commit(req);
14671da177e4SLinus Torvalds 
146848186c7dSChuck Lever 		dprintk("NFS:       commit (%s/%lld %d@%lld)",
146988be9f99STrond Myklebust 			req->wb_context->path.dentry->d_inode->i_sb->s_id,
147088be9f99STrond Myklebust 			(long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
14711da177e4SLinus Torvalds 			req->wb_bytes,
14721da177e4SLinus Torvalds 			(long long)req_offset(req));
1473c9d8f89dSTrond Myklebust 		if (status < 0) {
1474c9d8f89dSTrond Myklebust 			nfs_context_set_write_error(req->wb_context, status);
14751da177e4SLinus Torvalds 			nfs_inode_remove_request(req);
1476c9d8f89dSTrond Myklebust 			dprintk(", error = %d\n", status);
14771da177e4SLinus Torvalds 			goto next;
14781da177e4SLinus Torvalds 		}
14791da177e4SLinus Torvalds 
14801da177e4SLinus Torvalds 		/* Okay, COMMIT succeeded, apparently. Check the verifier
14811da177e4SLinus Torvalds 		 * returned by the server against all stored verfs. */
14821da177e4SLinus Torvalds 		if (!memcmp(req->wb_verf.verifier, data->verf.verifier, sizeof(data->verf.verifier))) {
14831da177e4SLinus Torvalds 			/* We have a match */
14841da177e4SLinus Torvalds 			nfs_inode_remove_request(req);
14851da177e4SLinus Torvalds 			dprintk(" OK\n");
14861da177e4SLinus Torvalds 			goto next;
14871da177e4SLinus Torvalds 		}
14881da177e4SLinus Torvalds 		/* We have a mismatch. Write the page again */
14891da177e4SLinus Torvalds 		dprintk(" mismatch\n");
14906d884e8fSFred 		nfs_mark_request_dirty(req);
14911da177e4SLinus Torvalds 	next:
14929fd367f0STrond Myklebust 		nfs_clear_page_tag_locked(req);
14931da177e4SLinus Torvalds 	}
14945917ce84SFred Isaman }
1495e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_release_pages);
14965917ce84SFred Isaman 
14975917ce84SFred Isaman static void nfs_commit_release(void *calldata)
14985917ce84SFred Isaman {
14995917ce84SFred Isaman 	struct nfs_write_data *data = calldata;
15005917ce84SFred Isaman 
15015917ce84SFred Isaman 	nfs_commit_release_pages(data);
150271d0a611STrond Myklebust 	nfs_commit_clear_lock(NFS_I(data->inode));
1503c9d8f89dSTrond Myklebust 	nfs_commitdata_release(calldata);
15041da177e4SLinus Torvalds }
1505788e7a89STrond Myklebust 
1506788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops = {
150721d9a851SAndy Adamson #if defined(CONFIG_NFS_V4_1)
150821d9a851SAndy Adamson 	.rpc_call_prepare = nfs_write_prepare,
150921d9a851SAndy Adamson #endif /* CONFIG_NFS_V4_1 */
1510788e7a89STrond Myklebust 	.rpc_call_done = nfs_commit_done,
1511788e7a89STrond Myklebust 	.rpc_release = nfs_commit_release,
1512788e7a89STrond Myklebust };
15131da177e4SLinus Torvalds 
1514b608b283STrond Myklebust int nfs_commit_inode(struct inode *inode, int how)
15151da177e4SLinus Torvalds {
15161da177e4SLinus Torvalds 	LIST_HEAD(head);
151771d0a611STrond Myklebust 	int may_wait = how & FLUSH_SYNC;
1518b8413f98STrond Myklebust 	int res;
15191da177e4SLinus Torvalds 
1520b8413f98STrond Myklebust 	res = nfs_commit_set_lock(NFS_I(inode), may_wait);
1521b8413f98STrond Myklebust 	if (res <= 0)
1522c5efa5fcSTrond Myklebust 		goto out_mark_dirty;
15233da28eb1STrond Myklebust 	res = nfs_scan_commit(inode, &head, 0, 0);
15241da177e4SLinus Torvalds 	if (res) {
1525a861a1e1SFred Isaman 		int error;
1526a861a1e1SFred Isaman 
1527a861a1e1SFred Isaman 		error = pnfs_commit_list(inode, &head, how);
1528a861a1e1SFred Isaman 		if (error == PNFS_NOT_ATTEMPTED)
1529a861a1e1SFred Isaman 			error = nfs_commit_list(inode, &head, how);
15301da177e4SLinus Torvalds 		if (error < 0)
15311da177e4SLinus Torvalds 			return error;
1532b8413f98STrond Myklebust 		if (!may_wait)
1533b8413f98STrond Myklebust 			goto out_mark_dirty;
1534b8413f98STrond Myklebust 		error = wait_on_bit(&NFS_I(inode)->flags,
1535b8413f98STrond Myklebust 				NFS_INO_COMMIT,
153671d0a611STrond Myklebust 				nfs_wait_bit_killable,
153771d0a611STrond Myklebust 				TASK_KILLABLE);
1538b8413f98STrond Myklebust 		if (error < 0)
1539b8413f98STrond Myklebust 			return error;
154071d0a611STrond Myklebust 	} else
154171d0a611STrond Myklebust 		nfs_commit_clear_lock(NFS_I(inode));
1542c5efa5fcSTrond Myklebust 	return res;
1543c5efa5fcSTrond Myklebust 	/* Note: If we exit without ensuring that the commit is complete,
1544c5efa5fcSTrond Myklebust 	 * we must mark the inode as dirty. Otherwise, future calls to
1545c5efa5fcSTrond Myklebust 	 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1546c5efa5fcSTrond Myklebust 	 * that the data is on the disk.
1547c5efa5fcSTrond Myklebust 	 */
1548c5efa5fcSTrond Myklebust out_mark_dirty:
1549c5efa5fcSTrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
15501da177e4SLinus Torvalds 	return res;
15511da177e4SLinus Torvalds }
15528fc795f7STrond Myklebust 
15538fc795f7STrond Myklebust static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
15548fc795f7STrond Myklebust {
1555420e3646STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
1556420e3646STrond Myklebust 	int flags = FLUSH_SYNC;
1557420e3646STrond Myklebust 	int ret = 0;
15588fc795f7STrond Myklebust 
1559a00dd6c0SJeff Layton 	if (wbc->sync_mode == WB_SYNC_NONE) {
1560a00dd6c0SJeff Layton 		/* Don't commit yet if this is a non-blocking flush and there
1561a00dd6c0SJeff Layton 		 * are a lot of outstanding writes for this mapping.
1562420e3646STrond Myklebust 		 */
1563a00dd6c0SJeff Layton 		if (nfsi->ncommit <= (nfsi->npages >> 1))
1564420e3646STrond Myklebust 			goto out_mark_dirty;
1565420e3646STrond Myklebust 
1566a00dd6c0SJeff Layton 		/* don't wait for the COMMIT response */
1567420e3646STrond Myklebust 		flags = 0;
1568a00dd6c0SJeff Layton 	}
1569a00dd6c0SJeff Layton 
1570420e3646STrond Myklebust 	ret = nfs_commit_inode(inode, flags);
1571420e3646STrond Myklebust 	if (ret >= 0) {
1572420e3646STrond Myklebust 		if (wbc->sync_mode == WB_SYNC_NONE) {
1573420e3646STrond Myklebust 			if (ret < wbc->nr_to_write)
1574420e3646STrond Myklebust 				wbc->nr_to_write -= ret;
1575420e3646STrond Myklebust 			else
1576420e3646STrond Myklebust 				wbc->nr_to_write = 0;
1577420e3646STrond Myklebust 		}
15788fc795f7STrond Myklebust 		return 0;
1579420e3646STrond Myklebust 	}
1580420e3646STrond Myklebust out_mark_dirty:
15818fc795f7STrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
15828fc795f7STrond Myklebust 	return ret;
15838fc795f7STrond Myklebust }
1584c63c7b05STrond Myklebust #else
15858fc795f7STrond Myklebust static int nfs_commit_unstable_pages(struct inode *inode, struct writeback_control *wbc)
15868fc795f7STrond Myklebust {
15878fc795f7STrond Myklebust 	return 0;
15888fc795f7STrond Myklebust }
15891da177e4SLinus Torvalds #endif
15901da177e4SLinus Torvalds 
15918fc795f7STrond Myklebust int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
15928fc795f7STrond Myklebust {
1593863a3c6cSAndy Adamson 	int ret;
1594863a3c6cSAndy Adamson 
1595863a3c6cSAndy Adamson 	ret = nfs_commit_unstable_pages(inode, wbc);
1596863a3c6cSAndy Adamson 	if (ret >= 0 && test_bit(NFS_INO_LAYOUTCOMMIT, &NFS_I(inode)->flags)) {
1597ef311537SAndy Adamson 		int status;
1598ef311537SAndy Adamson 		bool sync = true;
1599863a3c6cSAndy Adamson 
1600ef311537SAndy Adamson 		if (wbc->sync_mode == WB_SYNC_NONE || wbc->nonblocking ||
1601ef311537SAndy Adamson 		    wbc->for_background)
1602ef311537SAndy Adamson 			sync = false;
1603863a3c6cSAndy Adamson 
1604863a3c6cSAndy Adamson 		status = pnfs_layoutcommit_inode(inode, sync);
1605863a3c6cSAndy Adamson 		if (status < 0)
1606863a3c6cSAndy Adamson 			return status;
1607863a3c6cSAndy Adamson 	}
1608863a3c6cSAndy Adamson 	return ret;
16098fc795f7STrond Myklebust }
16108fc795f7STrond Myklebust 
1611acdc53b2STrond Myklebust /*
1612acdc53b2STrond Myklebust  * flush the inode to disk.
1613acdc53b2STrond Myklebust  */
1614acdc53b2STrond Myklebust int nfs_wb_all(struct inode *inode)
161534901f70STrond Myklebust {
161634901f70STrond Myklebust 	struct writeback_control wbc = {
161772cb77f4STrond Myklebust 		.sync_mode = WB_SYNC_ALL,
161834901f70STrond Myklebust 		.nr_to_write = LONG_MAX,
1619d7fb1207STrond Myklebust 		.range_start = 0,
1620d7fb1207STrond Myklebust 		.range_end = LLONG_MAX,
162134901f70STrond Myklebust 	};
162234901f70STrond Myklebust 
1623acdc53b2STrond Myklebust 	return sync_inode(inode, &wbc);
16241c75950bSTrond Myklebust }
16251c75950bSTrond Myklebust 
16261b3b4a1aSTrond Myklebust int nfs_wb_page_cancel(struct inode *inode, struct page *page)
16271b3b4a1aSTrond Myklebust {
16281b3b4a1aSTrond Myklebust 	struct nfs_page *req;
16291b3b4a1aSTrond Myklebust 	int ret = 0;
16301b3b4a1aSTrond Myklebust 
16311b3b4a1aSTrond Myklebust 	BUG_ON(!PageLocked(page));
16321b3b4a1aSTrond Myklebust 	for (;;) {
1633ba8b06e6STrond Myklebust 		wait_on_page_writeback(page);
16341b3b4a1aSTrond Myklebust 		req = nfs_page_find_request(page);
16351b3b4a1aSTrond Myklebust 		if (req == NULL)
16361b3b4a1aSTrond Myklebust 			break;
16371b3b4a1aSTrond Myklebust 		if (nfs_lock_request_dontget(req)) {
16381b3b4a1aSTrond Myklebust 			nfs_inode_remove_request(req);
16391b3b4a1aSTrond Myklebust 			/*
16401b3b4a1aSTrond Myklebust 			 * In case nfs_inode_remove_request has marked the
16411b3b4a1aSTrond Myklebust 			 * page as being dirty
16421b3b4a1aSTrond Myklebust 			 */
16431b3b4a1aSTrond Myklebust 			cancel_dirty_page(page, PAGE_CACHE_SIZE);
16441b3b4a1aSTrond Myklebust 			nfs_unlock_request(req);
16451b3b4a1aSTrond Myklebust 			break;
16461b3b4a1aSTrond Myklebust 		}
16471b3b4a1aSTrond Myklebust 		ret = nfs_wait_on_request(req);
1648c9edda71STrond Myklebust 		nfs_release_request(req);
16491b3b4a1aSTrond Myklebust 		if (ret < 0)
1650c988950eSTrond Myklebust 			break;
16511b3b4a1aSTrond Myklebust 	}
16521b3b4a1aSTrond Myklebust 	return ret;
16531b3b4a1aSTrond Myklebust }
16541b3b4a1aSTrond Myklebust 
16551c75950bSTrond Myklebust /*
16561c75950bSTrond Myklebust  * Write back all requests on one page - we do this before reading it.
16571c75950bSTrond Myklebust  */
16581c75950bSTrond Myklebust int nfs_wb_page(struct inode *inode, struct page *page)
16591c75950bSTrond Myklebust {
16607f2f12d9STrond Myklebust 	loff_t range_start = page_offset(page);
16617f2f12d9STrond Myklebust 	loff_t range_end = range_start + (loff_t)(PAGE_CACHE_SIZE - 1);
16627f2f12d9STrond Myklebust 	struct writeback_control wbc = {
16637f2f12d9STrond Myklebust 		.sync_mode = WB_SYNC_ALL,
16647f2f12d9STrond Myklebust 		.nr_to_write = 0,
16657f2f12d9STrond Myklebust 		.range_start = range_start,
16667f2f12d9STrond Myklebust 		.range_end = range_end,
16677f2f12d9STrond Myklebust 	};
16687f2f12d9STrond Myklebust 	int ret;
16697f2f12d9STrond Myklebust 
16700522f6adSTrond Myklebust 	for (;;) {
1671ba8b06e6STrond Myklebust 		wait_on_page_writeback(page);
16727f2f12d9STrond Myklebust 		if (clear_page_dirty_for_io(page)) {
16737f2f12d9STrond Myklebust 			ret = nfs_writepage_locked(page, &wbc);
16747f2f12d9STrond Myklebust 			if (ret < 0)
16757f2f12d9STrond Myklebust 				goto out_error;
16760522f6adSTrond Myklebust 			continue;
16777f2f12d9STrond Myklebust 		}
16780522f6adSTrond Myklebust 		if (!PagePrivate(page))
16790522f6adSTrond Myklebust 			break;
16800522f6adSTrond Myklebust 		ret = nfs_commit_inode(inode, FLUSH_SYNC);
16817f2f12d9STrond Myklebust 		if (ret < 0)
16827f2f12d9STrond Myklebust 			goto out_error;
16837f2f12d9STrond Myklebust 	}
16847f2f12d9STrond Myklebust 	return 0;
16857f2f12d9STrond Myklebust out_error:
16867f2f12d9STrond Myklebust 	return ret;
16871c75950bSTrond Myklebust }
16881c75950bSTrond Myklebust 
1689074cc1deSTrond Myklebust #ifdef CONFIG_MIGRATION
1690074cc1deSTrond Myklebust int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
1691074cc1deSTrond Myklebust 		struct page *page)
1692074cc1deSTrond Myklebust {
1693074cc1deSTrond Myklebust 	struct nfs_page *req;
1694074cc1deSTrond Myklebust 	int ret;
1695074cc1deSTrond Myklebust 
1696074cc1deSTrond Myklebust 	nfs_fscache_release_page(page, GFP_KERNEL);
1697074cc1deSTrond Myklebust 
1698cfb506e1STrond Myklebust 	req = nfs_find_and_lock_request(page, false);
1699074cc1deSTrond Myklebust 	ret = PTR_ERR(req);
1700074cc1deSTrond Myklebust 	if (IS_ERR(req))
1701074cc1deSTrond Myklebust 		goto out;
1702074cc1deSTrond Myklebust 
1703074cc1deSTrond Myklebust 	ret = migrate_page(mapping, newpage, page);
1704074cc1deSTrond Myklebust 	if (!req)
1705074cc1deSTrond Myklebust 		goto out;
1706074cc1deSTrond Myklebust 	if (ret)
1707074cc1deSTrond Myklebust 		goto out_unlock;
1708074cc1deSTrond Myklebust 	page_cache_get(newpage);
1709190f38e5STrond Myklebust 	spin_lock(&mapping->host->i_lock);
1710074cc1deSTrond Myklebust 	req->wb_page = newpage;
1711074cc1deSTrond Myklebust 	SetPagePrivate(newpage);
1712190f38e5STrond Myklebust 	set_page_private(newpage, (unsigned long)req);
1713074cc1deSTrond Myklebust 	ClearPagePrivate(page);
1714074cc1deSTrond Myklebust 	set_page_private(page, 0);
1715190f38e5STrond Myklebust 	spin_unlock(&mapping->host->i_lock);
1716074cc1deSTrond Myklebust 	page_cache_release(page);
1717074cc1deSTrond Myklebust out_unlock:
1718074cc1deSTrond Myklebust 	nfs_clear_page_tag_locked(req);
1719074cc1deSTrond Myklebust out:
1720074cc1deSTrond Myklebust 	return ret;
1721074cc1deSTrond Myklebust }
1722074cc1deSTrond Myklebust #endif
1723074cc1deSTrond Myklebust 
1724f7b422b1SDavid Howells int __init nfs_init_writepagecache(void)
17251da177e4SLinus Torvalds {
17261da177e4SLinus Torvalds 	nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
17271da177e4SLinus Torvalds 					     sizeof(struct nfs_write_data),
17281da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
172920c2df83SPaul Mundt 					     NULL);
17301da177e4SLinus Torvalds 	if (nfs_wdata_cachep == NULL)
17311da177e4SLinus Torvalds 		return -ENOMEM;
17321da177e4SLinus Torvalds 
173393d2341cSMatthew Dobson 	nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
17341da177e4SLinus Torvalds 						     nfs_wdata_cachep);
17351da177e4SLinus Torvalds 	if (nfs_wdata_mempool == NULL)
17361da177e4SLinus Torvalds 		return -ENOMEM;
17371da177e4SLinus Torvalds 
173893d2341cSMatthew Dobson 	nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
17391da177e4SLinus Torvalds 						      nfs_wdata_cachep);
17401da177e4SLinus Torvalds 	if (nfs_commit_mempool == NULL)
17411da177e4SLinus Torvalds 		return -ENOMEM;
17421da177e4SLinus Torvalds 
174389a09141SPeter Zijlstra 	/*
174489a09141SPeter Zijlstra 	 * NFS congestion size, scale with available memory.
174589a09141SPeter Zijlstra 	 *
174689a09141SPeter Zijlstra 	 *  64MB:    8192k
174789a09141SPeter Zijlstra 	 * 128MB:   11585k
174889a09141SPeter Zijlstra 	 * 256MB:   16384k
174989a09141SPeter Zijlstra 	 * 512MB:   23170k
175089a09141SPeter Zijlstra 	 *   1GB:   32768k
175189a09141SPeter Zijlstra 	 *   2GB:   46340k
175289a09141SPeter Zijlstra 	 *   4GB:   65536k
175389a09141SPeter Zijlstra 	 *   8GB:   92681k
175489a09141SPeter Zijlstra 	 *  16GB:  131072k
175589a09141SPeter Zijlstra 	 *
175689a09141SPeter Zijlstra 	 * This allows larger machines to have larger/more transfers.
175789a09141SPeter Zijlstra 	 * Limit the default to 256M
175889a09141SPeter Zijlstra 	 */
175989a09141SPeter Zijlstra 	nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
176089a09141SPeter Zijlstra 	if (nfs_congestion_kb > 256*1024)
176189a09141SPeter Zijlstra 		nfs_congestion_kb = 256*1024;
176289a09141SPeter Zijlstra 
17631da177e4SLinus Torvalds 	return 0;
17641da177e4SLinus Torvalds }
17651da177e4SLinus Torvalds 
1766266bee88SDavid Brownell void nfs_destroy_writepagecache(void)
17671da177e4SLinus Torvalds {
17681da177e4SLinus Torvalds 	mempool_destroy(nfs_commit_mempool);
17691da177e4SLinus Torvalds 	mempool_destroy(nfs_wdata_mempool);
17701a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_wdata_cachep);
17711da177e4SLinus Torvalds }
17721da177e4SLinus Torvalds 
1773