xref: /linux/fs/nfs/write.c (revision b66aaa8dfeda7b5c7df513cf3b36e1290fa84055)
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>
23afeacc8cSPaul Gortmaker #include <linux/export.h>
24af7cf057STrond Myklebust #include <linux/freezer.h>
25af7cf057STrond Myklebust #include <linux/wait.h>
263fcfab16SAndrew Morton 
277c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
281da177e4SLinus Torvalds 
291da177e4SLinus Torvalds #include "delegation.h"
3049a70f27STrond Myklebust #include "internal.h"
3191d5b470SChuck Lever #include "iostat.h"
32def6ed7eSAndy Adamson #include "nfs4_fs.h"
33074cc1deSTrond Myklebust #include "fscache.h"
3494ad1c80SFred Isaman #include "pnfs.h"
351da177e4SLinus Torvalds 
36f4ce1299STrond Myklebust #include "nfstrace.h"
37f4ce1299STrond Myklebust 
381da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
391da177e4SLinus Torvalds 
401da177e4SLinus Torvalds #define MIN_POOL_WRITE		(32)
411da177e4SLinus Torvalds #define MIN_POOL_COMMIT		(4)
421da177e4SLinus Torvalds 
43919e3bd9STrond Myklebust struct nfs_io_completion {
44919e3bd9STrond Myklebust 	void (*complete)(void *data);
45919e3bd9STrond Myklebust 	void *data;
46919e3bd9STrond Myklebust 	struct kref refcount;
47919e3bd9STrond Myklebust };
48919e3bd9STrond Myklebust 
491da177e4SLinus Torvalds /*
501da177e4SLinus Torvalds  * Local function declarations
511da177e4SLinus Torvalds  */
52f8512ad0SFred Isaman static void nfs_redirty_request(struct nfs_page *req);
53788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops;
54061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
55f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
564a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops;
57d4581383SWeston Andros Adamson static void nfs_clear_request_commit(struct nfs_page *req);
5802d1426cSWeston Andros Adamson static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
5902d1426cSWeston Andros Adamson 				      struct inode *inode);
603a3908c8STrond Myklebust static struct nfs_page *
613a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
623a3908c8STrond Myklebust 						struct page *page);
631da177e4SLinus Torvalds 
64e18b890bSChristoph Lameter static struct kmem_cache *nfs_wdata_cachep;
653feb2d49STrond Myklebust static mempool_t *nfs_wdata_mempool;
660b7c0153SFred Isaman static struct kmem_cache *nfs_cdata_cachep;
671da177e4SLinus Torvalds static mempool_t *nfs_commit_mempool;
681da177e4SLinus Torvalds 
69518662e0SNeilBrown struct nfs_commit_data *nfs_commitdata_alloc(bool never_fail)
701da177e4SLinus Torvalds {
71518662e0SNeilBrown 	struct nfs_commit_data *p;
7240859d7eSChuck Lever 
73518662e0SNeilBrown 	if (never_fail)
74518662e0SNeilBrown 		p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
75518662e0SNeilBrown 	else {
76518662e0SNeilBrown 		/* It is OK to do some reclaim, not no safe to wait
77518662e0SNeilBrown 		 * for anything to be returned to the pool.
78518662e0SNeilBrown 		 * mempool_alloc() cannot handle that particular combination,
79518662e0SNeilBrown 		 * so we need two separate attempts.
80518662e0SNeilBrown 		 */
81518662e0SNeilBrown 		p = mempool_alloc(nfs_commit_mempool, GFP_NOWAIT);
82518662e0SNeilBrown 		if (!p)
83518662e0SNeilBrown 			p = kmem_cache_alloc(nfs_cdata_cachep, GFP_NOIO |
84518662e0SNeilBrown 					     __GFP_NOWARN | __GFP_NORETRY);
85518662e0SNeilBrown 		if (!p)
86518662e0SNeilBrown 			return NULL;
87518662e0SNeilBrown 	}
88518662e0SNeilBrown 
891da177e4SLinus Torvalds 	memset(p, 0, sizeof(*p));
901da177e4SLinus Torvalds 	INIT_LIST_HEAD(&p->pages);
911da177e4SLinus Torvalds 	return p;
921da177e4SLinus Torvalds }
93e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
941da177e4SLinus Torvalds 
950b7c0153SFred Isaman void nfs_commit_free(struct nfs_commit_data *p)
961da177e4SLinus Torvalds {
971da177e4SLinus Torvalds 	mempool_free(p, nfs_commit_mempool);
981da177e4SLinus Torvalds }
99e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_free);
1001da177e4SLinus Torvalds 
1011e7f3a48SWeston Andros Adamson static struct nfs_pgio_header *nfs_writehdr_alloc(void)
1023feb2d49STrond Myklebust {
1031e7f3a48SWeston Andros Adamson 	struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
1043feb2d49STrond Myklebust 
105fbe77c30SBenjamin Coddington 	if (p) {
1063feb2d49STrond Myklebust 		memset(p, 0, sizeof(*p));
107fbe77c30SBenjamin Coddington 		p->rw_mode = FMODE_WRITE;
108fbe77c30SBenjamin Coddington 	}
1093feb2d49STrond Myklebust 	return p;
1103feb2d49STrond Myklebust }
1113feb2d49STrond Myklebust 
1121e7f3a48SWeston Andros Adamson static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
1136c75dc0dSFred Isaman {
1141e7f3a48SWeston Andros Adamson 	mempool_free(hdr, nfs_wdata_mempool);
1153feb2d49STrond Myklebust }
1161da177e4SLinus Torvalds 
117919e3bd9STrond Myklebust static struct nfs_io_completion *nfs_io_completion_alloc(gfp_t gfp_flags)
118919e3bd9STrond Myklebust {
119919e3bd9STrond Myklebust 	return kmalloc(sizeof(struct nfs_io_completion), gfp_flags);
120919e3bd9STrond Myklebust }
121919e3bd9STrond Myklebust 
122919e3bd9STrond Myklebust static void nfs_io_completion_init(struct nfs_io_completion *ioc,
123919e3bd9STrond Myklebust 		void (*complete)(void *), void *data)
124919e3bd9STrond Myklebust {
125919e3bd9STrond Myklebust 	ioc->complete = complete;
126919e3bd9STrond Myklebust 	ioc->data = data;
127919e3bd9STrond Myklebust 	kref_init(&ioc->refcount);
128919e3bd9STrond Myklebust }
129919e3bd9STrond Myklebust 
130919e3bd9STrond Myklebust static void nfs_io_completion_release(struct kref *kref)
131919e3bd9STrond Myklebust {
132919e3bd9STrond Myklebust 	struct nfs_io_completion *ioc = container_of(kref,
133919e3bd9STrond Myklebust 			struct nfs_io_completion, refcount);
134919e3bd9STrond Myklebust 	ioc->complete(ioc->data);
135919e3bd9STrond Myklebust 	kfree(ioc);
136919e3bd9STrond Myklebust }
137919e3bd9STrond Myklebust 
138919e3bd9STrond Myklebust static void nfs_io_completion_get(struct nfs_io_completion *ioc)
139919e3bd9STrond Myklebust {
140919e3bd9STrond Myklebust 	if (ioc != NULL)
141919e3bd9STrond Myklebust 		kref_get(&ioc->refcount);
142919e3bd9STrond Myklebust }
143919e3bd9STrond Myklebust 
144919e3bd9STrond Myklebust static void nfs_io_completion_put(struct nfs_io_completion *ioc)
145919e3bd9STrond Myklebust {
146919e3bd9STrond Myklebust 	if (ioc != NULL)
147919e3bd9STrond Myklebust 		kref_put(&ioc->refcount, nfs_io_completion_release);
148919e3bd9STrond Myklebust }
149919e3bd9STrond Myklebust 
1507b159fc1STrond Myklebust static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
1517b159fc1STrond Myklebust {
1527b159fc1STrond Myklebust 	ctx->error = error;
1537b159fc1STrond Myklebust 	smp_wmb();
1547b159fc1STrond Myklebust 	set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
1557b159fc1STrond Myklebust }
1567b159fc1STrond Myklebust 
15784d3a9a9SWeston Andros Adamson /*
15884d3a9a9SWeston Andros Adamson  * nfs_page_find_head_request_locked - find head request associated with @page
15984d3a9a9SWeston Andros Adamson  *
16084d3a9a9SWeston Andros Adamson  * must be called while holding the inode lock.
16184d3a9a9SWeston Andros Adamson  *
16284d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
16384d3a9a9SWeston Andros Adamson  */
16429418aa4SMel Gorman static struct nfs_page *
16584d3a9a9SWeston Andros Adamson nfs_page_find_head_request_locked(struct nfs_inode *nfsi, struct page *page)
166277459d2STrond Myklebust {
167277459d2STrond Myklebust 	struct nfs_page *req = NULL;
168277459d2STrond Myklebust 
16929418aa4SMel Gorman 	if (PagePrivate(page))
170277459d2STrond Myklebust 		req = (struct nfs_page *)page_private(page);
17102d1426cSWeston Andros Adamson 	else if (unlikely(PageSwapCache(page)))
17202d1426cSWeston Andros Adamson 		req = nfs_page_search_commits_for_head_request_locked(nfsi,
17302d1426cSWeston Andros Adamson 			page);
17429418aa4SMel Gorman 
17584d3a9a9SWeston Andros Adamson 	if (req) {
17684d3a9a9SWeston Andros Adamson 		WARN_ON_ONCE(req->wb_head != req);
17729418aa4SMel Gorman 		kref_get(&req->wb_kref);
17884d3a9a9SWeston Andros Adamson 	}
17929418aa4SMel Gorman 
180277459d2STrond Myklebust 	return req;
181277459d2STrond Myklebust }
182277459d2STrond Myklebust 
18384d3a9a9SWeston Andros Adamson /*
18484d3a9a9SWeston Andros Adamson  * nfs_page_find_head_request - find head request associated with @page
18584d3a9a9SWeston Andros Adamson  *
18684d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
18784d3a9a9SWeston Andros Adamson  */
18884d3a9a9SWeston Andros Adamson static struct nfs_page *nfs_page_find_head_request(struct page *page)
189277459d2STrond Myklebust {
190d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
191277459d2STrond Myklebust 	struct nfs_page *req = NULL;
192277459d2STrond Myklebust 
19382749dd4STrond Myklebust 	if (PagePrivate(page) || PageSwapCache(page)) {
194587142f8STrond Myklebust 		spin_lock(&inode->i_lock);
19584d3a9a9SWeston Andros Adamson 		req = nfs_page_find_head_request_locked(NFS_I(inode), page);
196587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
19782749dd4STrond Myklebust 	}
198277459d2STrond Myklebust 	return req;
199277459d2STrond Myklebust }
200277459d2STrond Myklebust 
2011da177e4SLinus Torvalds /* Adjust the file length if we're writing beyond the end */
2021da177e4SLinus Torvalds static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
2031da177e4SLinus Torvalds {
204d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
205a3d01454STrond Myklebust 	loff_t end, i_size;
206a3d01454STrond Myklebust 	pgoff_t end_index;
2071da177e4SLinus Torvalds 
208a3d01454STrond Myklebust 	spin_lock(&inode->i_lock);
209a3d01454STrond Myklebust 	i_size = i_size_read(inode);
21009cbfeafSKirill A. Shutemov 	end_index = (i_size - 1) >> PAGE_SHIFT;
2118cd79788SHuang Ying 	if (i_size > 0 && page_index(page) < end_index)
212a3d01454STrond Myklebust 		goto out;
213d56b4ddfSMel Gorman 	end = page_file_offset(page) + ((loff_t)offset+count);
2141da177e4SLinus Torvalds 	if (i_size >= end)
215a3d01454STrond Myklebust 		goto out;
2161da177e4SLinus Torvalds 	i_size_write(inode, end);
217a3d01454STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
218a3d01454STrond Myklebust out:
219a3d01454STrond Myklebust 	spin_unlock(&inode->i_lock);
2201da177e4SLinus Torvalds }
2211da177e4SLinus Torvalds 
222a301b777STrond Myklebust /* A writeback failed: mark the page as bad, and invalidate the page cache */
223a301b777STrond Myklebust static void nfs_set_pageerror(struct page *page)
224a301b777STrond Myklebust {
225d56b4ddfSMel Gorman 	nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page));
226a301b777STrond Myklebust }
227a301b777STrond Myklebust 
228d72ddcbaSWeston Andros Adamson /*
229d72ddcbaSWeston Andros Adamson  * nfs_page_group_search_locked
230d72ddcbaSWeston Andros Adamson  * @head - head request of page group
231d72ddcbaSWeston Andros Adamson  * @page_offset - offset into page
232d72ddcbaSWeston Andros Adamson  *
233d72ddcbaSWeston Andros Adamson  * Search page group with head @head to find a request that contains the
234d72ddcbaSWeston Andros Adamson  * page offset @page_offset.
235d72ddcbaSWeston Andros Adamson  *
236d72ddcbaSWeston Andros Adamson  * Returns a pointer to the first matching nfs request, or NULL if no
237d72ddcbaSWeston Andros Adamson  * match is found.
238d72ddcbaSWeston Andros Adamson  *
239d72ddcbaSWeston Andros Adamson  * Must be called with the page group lock held
240d72ddcbaSWeston Andros Adamson  */
241d72ddcbaSWeston Andros Adamson static struct nfs_page *
242d72ddcbaSWeston Andros Adamson nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
243d72ddcbaSWeston Andros Adamson {
244d72ddcbaSWeston Andros Adamson 	struct nfs_page *req;
245d72ddcbaSWeston Andros Adamson 
246d72ddcbaSWeston Andros Adamson 	WARN_ON_ONCE(head != head->wb_head);
247d72ddcbaSWeston Andros Adamson 	WARN_ON_ONCE(!test_bit(PG_HEADLOCK, &head->wb_head->wb_flags));
248d72ddcbaSWeston Andros Adamson 
249d72ddcbaSWeston Andros Adamson 	req = head;
250d72ddcbaSWeston Andros Adamson 	do {
251d72ddcbaSWeston Andros Adamson 		if (page_offset >= req->wb_pgbase &&
252d72ddcbaSWeston Andros Adamson 		    page_offset < (req->wb_pgbase + req->wb_bytes))
253d72ddcbaSWeston Andros Adamson 			return req;
254d72ddcbaSWeston Andros Adamson 
255d72ddcbaSWeston Andros Adamson 		req = req->wb_this_page;
256d72ddcbaSWeston Andros Adamson 	} while (req != head);
257d72ddcbaSWeston Andros Adamson 
258d72ddcbaSWeston Andros Adamson 	return NULL;
259d72ddcbaSWeston Andros Adamson }
260d72ddcbaSWeston Andros Adamson 
261d72ddcbaSWeston Andros Adamson /*
262d72ddcbaSWeston Andros Adamson  * nfs_page_group_covers_page
263d72ddcbaSWeston Andros Adamson  * @head - head request of page group
264d72ddcbaSWeston Andros Adamson  *
265d72ddcbaSWeston Andros Adamson  * Return true if the page group with head @head covers the whole page,
266d72ddcbaSWeston Andros Adamson  * returns false otherwise
267d72ddcbaSWeston Andros Adamson  */
268d72ddcbaSWeston Andros Adamson static bool nfs_page_group_covers_page(struct nfs_page *req)
269d72ddcbaSWeston Andros Adamson {
270d72ddcbaSWeston Andros Adamson 	struct nfs_page *tmp;
271d72ddcbaSWeston Andros Adamson 	unsigned int pos = 0;
272d72ddcbaSWeston Andros Adamson 	unsigned int len = nfs_page_length(req->wb_page);
273d72ddcbaSWeston Andros Adamson 
274fd2f3a06SWeston Andros Adamson 	nfs_page_group_lock(req, false);
275d72ddcbaSWeston Andros Adamson 
276d72ddcbaSWeston Andros Adamson 	do {
277d72ddcbaSWeston Andros Adamson 		tmp = nfs_page_group_search_locked(req->wb_head, pos);
278d72ddcbaSWeston Andros Adamson 		if (tmp) {
279d72ddcbaSWeston Andros Adamson 			/* no way this should happen */
280d72ddcbaSWeston Andros Adamson 			WARN_ON_ONCE(tmp->wb_pgbase != pos);
281d72ddcbaSWeston Andros Adamson 			pos += tmp->wb_bytes - (pos - tmp->wb_pgbase);
282d72ddcbaSWeston Andros Adamson 		}
283d72ddcbaSWeston Andros Adamson 	} while (tmp && pos < len);
284d72ddcbaSWeston Andros Adamson 
285d72ddcbaSWeston Andros Adamson 	nfs_page_group_unlock(req);
286d72ddcbaSWeston Andros Adamson 	WARN_ON_ONCE(pos > len);
287d72ddcbaSWeston Andros Adamson 	return pos == len;
288d72ddcbaSWeston Andros Adamson }
289d72ddcbaSWeston Andros Adamson 
2901da177e4SLinus Torvalds /* We can set the PG_uptodate flag if we see that a write request
2911da177e4SLinus Torvalds  * covers the full page.
2921da177e4SLinus Torvalds  */
293d72ddcbaSWeston Andros Adamson static void nfs_mark_uptodate(struct nfs_page *req)
2941da177e4SLinus Torvalds {
295d72ddcbaSWeston Andros Adamson 	if (PageUptodate(req->wb_page))
2961da177e4SLinus Torvalds 		return;
297d72ddcbaSWeston Andros Adamson 	if (!nfs_page_group_covers_page(req))
2981da177e4SLinus Torvalds 		return;
299d72ddcbaSWeston Andros Adamson 	SetPageUptodate(req->wb_page);
3001da177e4SLinus Torvalds }
3011da177e4SLinus Torvalds 
3021da177e4SLinus Torvalds static int wb_priority(struct writeback_control *wbc)
3031da177e4SLinus Torvalds {
304e87b4c7aSNeilBrown 	int ret = 0;
305cca588d6STrond Myklebust 
306e87b4c7aSNeilBrown 	if (wbc->sync_mode == WB_SYNC_ALL)
307e87b4c7aSNeilBrown 		ret = FLUSH_COND_STABLE;
308e87b4c7aSNeilBrown 	return ret;
3091da177e4SLinus Torvalds }
3101da177e4SLinus Torvalds 
3111da177e4SLinus Torvalds /*
31289a09141SPeter Zijlstra  * NFS congestion control
31389a09141SPeter Zijlstra  */
31489a09141SPeter Zijlstra 
31589a09141SPeter Zijlstra int nfs_congestion_kb;
31689a09141SPeter Zijlstra 
31789a09141SPeter Zijlstra #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10))
31889a09141SPeter Zijlstra #define NFS_CONGESTION_OFF_THRESH	\
31989a09141SPeter Zijlstra 	(NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
32089a09141SPeter Zijlstra 
321deed85e7STrond Myklebust static void nfs_set_page_writeback(struct page *page)
32289a09141SPeter Zijlstra {
3230db10944SJan Kara 	struct inode *inode = page_file_mapping(page)->host;
3240db10944SJan Kara 	struct nfs_server *nfss = NFS_SERVER(inode);
3255a6d41b3STrond Myklebust 	int ret = test_set_page_writeback(page);
3265a6d41b3STrond Myklebust 
327deed85e7STrond Myklebust 	WARN_ON_ONCE(ret != 0);
32889a09141SPeter Zijlstra 
329277866a0SPeter Zijlstra 	if (atomic_long_inc_return(&nfss->writeback) >
3300db10944SJan Kara 			NFS_CONGESTION_ON_THRESH)
3310db10944SJan Kara 		set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
33289a09141SPeter Zijlstra }
33389a09141SPeter Zijlstra 
33420633f04SWeston Andros Adamson static void nfs_end_page_writeback(struct nfs_page *req)
33589a09141SPeter Zijlstra {
33620633f04SWeston Andros Adamson 	struct inode *inode = page_file_mapping(req->wb_page)->host;
33789a09141SPeter Zijlstra 	struct nfs_server *nfss = NFS_SERVER(inode);
33831a01f09STrond Myklebust 	bool is_done;
33989a09141SPeter Zijlstra 
34031a01f09STrond Myklebust 	is_done = nfs_page_group_sync_on_bit(req, PG_WB_END);
34131a01f09STrond Myklebust 	nfs_unlock_request(req);
34231a01f09STrond Myklebust 	if (!is_done)
34320633f04SWeston Andros Adamson 		return;
34420633f04SWeston Andros Adamson 
34520633f04SWeston Andros Adamson 	end_page_writeback(req->wb_page);
346c4dc4beeSPeter Zijlstra 	if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
3470db10944SJan Kara 		clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
34889a09141SPeter Zijlstra }
34989a09141SPeter Zijlstra 
350d4581383SWeston Andros Adamson 
351d4581383SWeston Andros Adamson /* nfs_page_group_clear_bits
352d4581383SWeston Andros Adamson  *   @req - an nfs request
353d4581383SWeston Andros Adamson  * clears all page group related bits from @req
354d4581383SWeston Andros Adamson  */
355d4581383SWeston Andros Adamson static void
356d4581383SWeston Andros Adamson nfs_page_group_clear_bits(struct nfs_page *req)
357e261f51fSTrond Myklebust {
358d4581383SWeston Andros Adamson 	clear_bit(PG_TEARDOWN, &req->wb_flags);
359d4581383SWeston Andros Adamson 	clear_bit(PG_UNLOCKPAGE, &req->wb_flags);
360d4581383SWeston Andros Adamson 	clear_bit(PG_UPTODATE, &req->wb_flags);
361d4581383SWeston Andros Adamson 	clear_bit(PG_WB_END, &req->wb_flags);
362d4581383SWeston Andros Adamson 	clear_bit(PG_REMOVE, &req->wb_flags);
363d4581383SWeston Andros Adamson }
364d4581383SWeston Andros Adamson 
365d4581383SWeston Andros Adamson 
366d4581383SWeston Andros Adamson /*
367d4581383SWeston Andros Adamson  * nfs_unroll_locks_and_wait -  unlock all newly locked reqs and wait on @req
368d4581383SWeston Andros Adamson  *
369d4581383SWeston Andros Adamson  * this is a helper function for nfs_lock_and_join_requests
370d4581383SWeston Andros Adamson  *
371d4581383SWeston Andros Adamson  * @inode - inode associated with request page group, must be holding inode lock
372d4581383SWeston Andros Adamson  * @head  - head request of page group, must be holding head lock
373d4581383SWeston Andros Adamson  * @req   - request that couldn't lock and needs to wait on the req bit lock
374d4581383SWeston Andros Adamson  *
375d4581383SWeston Andros Adamson  * NOTE: this must be called holding page_group bit lock and inode spin lock
376d4581383SWeston Andros Adamson  *       and BOTH will be released before returning.
377d4581383SWeston Andros Adamson  *
378d4581383SWeston Andros Adamson  * returns 0 on success, < 0 on error.
379d4581383SWeston Andros Adamson  */
380d4581383SWeston Andros Adamson static int
381d4581383SWeston Andros Adamson nfs_unroll_locks_and_wait(struct inode *inode, struct nfs_page *head,
3826d17d653STrond Myklebust 			  struct nfs_page *req)
383d4581383SWeston Andros Adamson 	__releases(&inode->i_lock)
384d4581383SWeston Andros Adamson {
385d4581383SWeston Andros Adamson 	struct nfs_page *tmp;
386e261f51fSTrond Myklebust 	int ret;
387e261f51fSTrond Myklebust 
388d4581383SWeston Andros Adamson 	/* relinquish all the locks successfully grabbed this run */
389a0e265bcSTrond Myklebust 	for (tmp = head->wb_this_page ; tmp != req; tmp = tmp->wb_this_page)
390d4581383SWeston Andros Adamson 		nfs_unlock_request(tmp);
391d4581383SWeston Andros Adamson 
392d4581383SWeston Andros Adamson 	WARN_ON_ONCE(test_bit(PG_TEARDOWN, &req->wb_flags));
393d4581383SWeston Andros Adamson 
394d4581383SWeston Andros Adamson 	/* grab a ref on the request that will be waited on */
395d4581383SWeston Andros Adamson 	kref_get(&req->wb_kref);
396d4581383SWeston Andros Adamson 
397d4581383SWeston Andros Adamson 	nfs_page_group_unlock(head);
398587142f8STrond Myklebust 	spin_unlock(&inode->i_lock);
399d4581383SWeston Andros Adamson 
400d4581383SWeston Andros Adamson 	/* release ref from nfs_page_find_head_request_locked */
401a0e265bcSTrond Myklebust 	nfs_unlock_and_release_request(head);
402d4581383SWeston Andros Adamson 
403e261f51fSTrond Myklebust 	ret = nfs_wait_on_request(req);
404e261f51fSTrond Myklebust 	nfs_release_request(req);
405d4581383SWeston Andros Adamson 
406d4581383SWeston Andros Adamson 	return ret;
407e261f51fSTrond Myklebust }
408d4581383SWeston Andros Adamson 
409d4581383SWeston Andros Adamson /*
410d4581383SWeston Andros Adamson  * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
411d4581383SWeston Andros Adamson  *
412d4581383SWeston Andros Adamson  * @destroy_list - request list (using wb_this_page) terminated by @old_head
413d4581383SWeston Andros Adamson  * @old_head - the old head of the list
414d4581383SWeston Andros Adamson  *
415d4581383SWeston Andros Adamson  * All subrequests must be locked and removed from all lists, so at this point
416d4581383SWeston Andros Adamson  * they are only "active" in this function, and possibly in nfs_wait_on_request
417d4581383SWeston Andros Adamson  * with a reference held by some other context.
418d4581383SWeston Andros Adamson  */
419d4581383SWeston Andros Adamson static void
420d4581383SWeston Andros Adamson nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
421*b66aaa8dSTrond Myklebust 				 struct nfs_page *old_head,
422*b66aaa8dSTrond Myklebust 				 struct inode *inode)
423d4581383SWeston Andros Adamson {
424d4581383SWeston Andros Adamson 	while (destroy_list) {
425d4581383SWeston Andros Adamson 		struct nfs_page *subreq = destroy_list;
426d4581383SWeston Andros Adamson 
427d4581383SWeston Andros Adamson 		destroy_list = (subreq->wb_this_page == old_head) ?
428d4581383SWeston Andros Adamson 				   NULL : subreq->wb_this_page;
429d4581383SWeston Andros Adamson 
430d4581383SWeston Andros Adamson 		WARN_ON_ONCE(old_head != subreq->wb_head);
431d4581383SWeston Andros Adamson 
432d4581383SWeston Andros Adamson 		/* make sure old group is not used */
433d4581383SWeston Andros Adamson 		subreq->wb_head = subreq;
434d4581383SWeston Andros Adamson 		subreq->wb_this_page = subreq;
435d4581383SWeston Andros Adamson 
436d4581383SWeston Andros Adamson 		/* subreq is now totally disconnected from page group or any
437d4581383SWeston Andros Adamson 		 * write / commit lists. last chance to wake any waiters */
438d4581383SWeston Andros Adamson 		nfs_unlock_request(subreq);
439d4581383SWeston Andros Adamson 
440d4581383SWeston Andros Adamson 		if (!test_bit(PG_TEARDOWN, &subreq->wb_flags)) {
441d4581383SWeston Andros Adamson 			/* release ref on old head request */
442d4581383SWeston Andros Adamson 			nfs_release_request(old_head);
443d4581383SWeston Andros Adamson 
444d4581383SWeston Andros Adamson 			nfs_page_group_clear_bits(subreq);
445d4581383SWeston Andros Adamson 
446d4581383SWeston Andros Adamson 			/* release the PG_INODE_REF reference */
447*b66aaa8dSTrond Myklebust 			if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) {
448d4581383SWeston Andros Adamson 				nfs_release_request(subreq);
449*b66aaa8dSTrond Myklebust 				spin_lock(&inode->i_lock);
450*b66aaa8dSTrond Myklebust 				NFS_I(inode)->nrequests--;
451*b66aaa8dSTrond Myklebust 				spin_unlock(&inode->i_lock);
452*b66aaa8dSTrond Myklebust 			} else
453d4581383SWeston Andros Adamson 				WARN_ON_ONCE(1);
454d4581383SWeston Andros Adamson 		} else {
455d4581383SWeston Andros Adamson 			WARN_ON_ONCE(test_bit(PG_CLEAN, &subreq->wb_flags));
456d4581383SWeston Andros Adamson 			/* zombie requests have already released the last
457d4581383SWeston Andros Adamson 			 * reference and were waiting on the rest of the
458d4581383SWeston Andros Adamson 			 * group to complete. Since it's no longer part of a
459d4581383SWeston Andros Adamson 			 * group, simply free the request */
460d4581383SWeston Andros Adamson 			nfs_page_group_clear_bits(subreq);
461d4581383SWeston Andros Adamson 			nfs_free_request(subreq);
462d4581383SWeston Andros Adamson 		}
463d4581383SWeston Andros Adamson 	}
464d4581383SWeston Andros Adamson }
465d4581383SWeston Andros Adamson 
466d4581383SWeston Andros Adamson /*
467d4581383SWeston Andros Adamson  * nfs_lock_and_join_requests - join all subreqs to the head req and return
468d4581383SWeston Andros Adamson  *                              a locked reference, cancelling any pending
469d4581383SWeston Andros Adamson  *                              operations for this page.
470d4581383SWeston Andros Adamson  *
471d4581383SWeston Andros Adamson  * @page - the page used to lookup the "page group" of nfs_page structures
472d4581383SWeston Andros Adamson  *
473d4581383SWeston Andros Adamson  * This function joins all sub requests to the head request by first
474d4581383SWeston Andros Adamson  * locking all requests in the group, cancelling any pending operations
475d4581383SWeston Andros Adamson  * and finally updating the head request to cover the whole range covered by
476d4581383SWeston Andros Adamson  * the (former) group.  All subrequests are removed from any write or commit
477d4581383SWeston Andros Adamson  * lists, unlinked from the group and destroyed.
478d4581383SWeston Andros Adamson  *
479d4581383SWeston Andros Adamson  * Returns a locked, referenced pointer to the head request - which after
480d4581383SWeston Andros Adamson  * this call is guaranteed to be the only request associated with the page.
481d4581383SWeston Andros Adamson  * Returns NULL if no requests are found for @page, or a ERR_PTR if an
482d4581383SWeston Andros Adamson  * error was encountered.
483d4581383SWeston Andros Adamson  */
484d4581383SWeston Andros Adamson static struct nfs_page *
4856d17d653STrond Myklebust nfs_lock_and_join_requests(struct page *page)
486d4581383SWeston Andros Adamson {
487d4581383SWeston Andros Adamson 	struct inode *inode = page_file_mapping(page)->host;
488d4581383SWeston Andros Adamson 	struct nfs_page *head, *subreq;
489d4581383SWeston Andros Adamson 	struct nfs_page *destroy_list = NULL;
490d4581383SWeston Andros Adamson 	unsigned int total_bytes;
491d4581383SWeston Andros Adamson 	int ret;
492d4581383SWeston Andros Adamson 
493d4581383SWeston Andros Adamson try_again:
494d4581383SWeston Andros Adamson 	spin_lock(&inode->i_lock);
495d4581383SWeston Andros Adamson 
496d4581383SWeston Andros Adamson 	/*
497d4581383SWeston Andros Adamson 	 * A reference is taken only on the head request which acts as a
498d4581383SWeston Andros Adamson 	 * reference to the whole page group - the group will not be destroyed
499d4581383SWeston Andros Adamson 	 * until the head reference is released.
500d4581383SWeston Andros Adamson 	 */
501d4581383SWeston Andros Adamson 	head = nfs_page_find_head_request_locked(NFS_I(inode), page);
502d4581383SWeston Andros Adamson 
503d4581383SWeston Andros Adamson 	if (!head) {
504587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
505d4581383SWeston Andros Adamson 		return NULL;
506d4581383SWeston Andros Adamson 	}
507d4581383SWeston Andros Adamson 
508a0e265bcSTrond Myklebust 	/* lock the page head first in order to avoid an ABBA inefficiency */
509a0e265bcSTrond Myklebust 	if (!nfs_lock_request(head)) {
510a0e265bcSTrond Myklebust 		spin_unlock(&inode->i_lock);
511a0e265bcSTrond Myklebust 		ret = nfs_wait_on_request(head);
512a0e265bcSTrond Myklebust 		nfs_release_request(head);
513a0e265bcSTrond Myklebust 		if (ret < 0)
514a0e265bcSTrond Myklebust 			return ERR_PTR(ret);
515a0e265bcSTrond Myklebust 		goto try_again;
516a0e265bcSTrond Myklebust 	}
517a0e265bcSTrond Myklebust 
5187c3af975SWeston Andros Adamson 	/* holding inode lock, so always make a non-blocking call to try the
5197c3af975SWeston Andros Adamson 	 * page group lock */
520fd2f3a06SWeston Andros Adamson 	ret = nfs_page_group_lock(head, true);
52194970014SWeston Andros Adamson 	if (ret < 0) {
52294970014SWeston Andros Adamson 		spin_unlock(&inode->i_lock);
5237c3af975SWeston Andros Adamson 
5247c3af975SWeston Andros Adamson 		nfs_page_group_lock_wait(head);
525a0e265bcSTrond Myklebust 		nfs_unlock_and_release_request(head);
5267c3af975SWeston Andros Adamson 		goto try_again;
5277c3af975SWeston Andros Adamson 	}
5287c3af975SWeston Andros Adamson 
5297c3af975SWeston Andros Adamson 	/* lock each request in the page group */
530a0e265bcSTrond Myklebust 	total_bytes = head->wb_bytes;
531a0e265bcSTrond Myklebust 	for (subreq = head->wb_this_page; subreq != head;
532a0e265bcSTrond Myklebust 			subreq = subreq->wb_this_page) {
533d4581383SWeston Andros Adamson 		if (!nfs_lock_request(subreq)) {
534d4581383SWeston Andros Adamson 			/* releases page group bit lock and
535d4581383SWeston Andros Adamson 			 * inode spin lock and all references */
536d4581383SWeston Andros Adamson 			ret = nfs_unroll_locks_and_wait(inode, head,
5376d17d653STrond Myklebust 				subreq);
538d4581383SWeston Andros Adamson 
539d4581383SWeston Andros Adamson 			if (ret == 0)
540d4581383SWeston Andros Adamson 				goto try_again;
541d4581383SWeston Andros Adamson 
542d4581383SWeston Andros Adamson 			return ERR_PTR(ret);
543d4581383SWeston Andros Adamson 		}
544e14bebf6STrond Myklebust 		/*
545e14bebf6STrond Myklebust 		 * Subrequests are always contiguous, non overlapping
546e14bebf6STrond Myklebust 		 * and in order - but may be repeated (mirrored writes).
547e14bebf6STrond Myklebust 		 */
548e14bebf6STrond Myklebust 		if (subreq->wb_offset == (head->wb_offset + total_bytes)) {
549e14bebf6STrond Myklebust 			/* keep track of how many bytes this group covers */
550e14bebf6STrond Myklebust 			total_bytes += subreq->wb_bytes;
551e14bebf6STrond Myklebust 		} else if (WARN_ON_ONCE(subreq->wb_offset < head->wb_offset ||
552e14bebf6STrond Myklebust 			    ((subreq->wb_offset + subreq->wb_bytes) >
553e14bebf6STrond Myklebust 			     (head->wb_offset + total_bytes)))) {
554e14bebf6STrond Myklebust 			nfs_unlock_request(subreq);
555e14bebf6STrond Myklebust 			nfs_unroll_locks_and_wait(inode, head, subreq);
556e14bebf6STrond Myklebust 			return ERR_PTR(-EIO);
557e14bebf6STrond Myklebust 		}
558a0e265bcSTrond Myklebust 	}
559d4581383SWeston Andros Adamson 
560d4581383SWeston Andros Adamson 	/* Now that all requests are locked, make sure they aren't on any list.
561d4581383SWeston Andros Adamson 	 * Commit list removal accounting is done after locks are dropped */
562d4581383SWeston Andros Adamson 	subreq = head;
563d4581383SWeston Andros Adamson 	do {
564411a99adSWeston Andros Adamson 		nfs_clear_request_commit(subreq);
565d4581383SWeston Andros Adamson 		subreq = subreq->wb_this_page;
566d4581383SWeston Andros Adamson 	} while (subreq != head);
567d4581383SWeston Andros Adamson 
568d4581383SWeston Andros Adamson 	/* unlink subrequests from head, destroy them later */
569d4581383SWeston Andros Adamson 	if (head->wb_this_page != head) {
570d4581383SWeston Andros Adamson 		/* destroy list will be terminated by head */
571d4581383SWeston Andros Adamson 		destroy_list = head->wb_this_page;
572d4581383SWeston Andros Adamson 		head->wb_this_page = head;
573d4581383SWeston Andros Adamson 
574d4581383SWeston Andros Adamson 		/* change head request to cover whole range that
575d4581383SWeston Andros Adamson 		 * the former page group covered */
576d4581383SWeston Andros Adamson 		head->wb_bytes = total_bytes;
577d4581383SWeston Andros Adamson 	}
578d4581383SWeston Andros Adamson 
579*b66aaa8dSTrond Myklebust 	/* Postpone destruction of this request */
580*b66aaa8dSTrond Myklebust 	if (test_and_clear_bit(PG_REMOVE, &head->wb_flags)) {
581*b66aaa8dSTrond Myklebust 		set_bit(PG_INODE_REF, &head->wb_flags);
582*b66aaa8dSTrond Myklebust 		kref_get(&head->wb_kref);
583*b66aaa8dSTrond Myklebust 		NFS_I(inode)->nrequests++;
584*b66aaa8dSTrond Myklebust 	}
585*b66aaa8dSTrond Myklebust 
586d4581383SWeston Andros Adamson 	/*
587d4581383SWeston Andros Adamson 	 * prepare head request to be added to new pgio descriptor
588d4581383SWeston Andros Adamson 	 */
589d4581383SWeston Andros Adamson 	nfs_page_group_clear_bits(head);
590d4581383SWeston Andros Adamson 
591d4581383SWeston Andros Adamson 	nfs_page_group_unlock(head);
592d4581383SWeston Andros Adamson 
593411a99adSWeston Andros Adamson 	/* drop lock to clean uprequests on destroy list */
594d4581383SWeston Andros Adamson 	spin_unlock(&inode->i_lock);
595d4581383SWeston Andros Adamson 
596*b66aaa8dSTrond Myklebust 	nfs_destroy_unlinked_subrequests(destroy_list, head, inode);
597d4581383SWeston Andros Adamson 
598d4581383SWeston Andros Adamson 	/* still holds ref on head from nfs_page_find_head_request_locked
599d4581383SWeston Andros Adamson 	 * and still has lock on head from lock loop */
600d4581383SWeston Andros Adamson 	return head;
601612c9384STrond Myklebust }
602074cc1deSTrond Myklebust 
6030bcbf039SPeng Tao static void nfs_write_error_remove_page(struct nfs_page *req)
6040bcbf039SPeng Tao {
6050bcbf039SPeng Tao 	nfs_end_page_writeback(req);
6060bcbf039SPeng Tao 	generic_error_remove_page(page_file_mapping(req->wb_page),
6070bcbf039SPeng Tao 				  req->wb_page);
6081f84ccdfSFred Isaman 	nfs_release_request(req);
6090bcbf039SPeng Tao }
6100bcbf039SPeng Tao 
611a6598813STrond Myklebust static bool
612a6598813STrond Myklebust nfs_error_is_fatal_on_server(int err)
613a6598813STrond Myklebust {
614a6598813STrond Myklebust 	switch (err) {
615a6598813STrond Myklebust 	case 0:
616a6598813STrond Myklebust 	case -ERESTARTSYS:
617a6598813STrond Myklebust 	case -EINTR:
618a6598813STrond Myklebust 		return false;
619a6598813STrond Myklebust 	}
620a6598813STrond Myklebust 	return nfs_error_is_fatal(err);
621e261f51fSTrond Myklebust }
622074cc1deSTrond Myklebust 
623074cc1deSTrond Myklebust /*
624074cc1deSTrond Myklebust  * Find an associated nfs write request, and prepare to flush it out
625074cc1deSTrond Myklebust  * May return an error if the user signalled nfs_wait_on_request().
626074cc1deSTrond Myklebust  */
627074cc1deSTrond Myklebust static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
6286d17d653STrond Myklebust 				struct page *page)
629074cc1deSTrond Myklebust {
630074cc1deSTrond Myklebust 	struct nfs_page *req;
631074cc1deSTrond Myklebust 	int ret = 0;
632074cc1deSTrond Myklebust 
6336d17d653STrond Myklebust 	req = nfs_lock_and_join_requests(page);
634074cc1deSTrond Myklebust 	if (!req)
635074cc1deSTrond Myklebust 		goto out;
636074cc1deSTrond Myklebust 	ret = PTR_ERR(req);
637074cc1deSTrond Myklebust 	if (IS_ERR(req))
638074cc1deSTrond Myklebust 		goto out;
639074cc1deSTrond Myklebust 
640deed85e7STrond Myklebust 	nfs_set_page_writeback(page);
641deed85e7STrond Myklebust 	WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
642074cc1deSTrond Myklebust 
643deed85e7STrond Myklebust 	ret = 0;
644a6598813STrond Myklebust 	/* If there is a fatal error that covers this write, just exit */
645a6598813STrond Myklebust 	if (nfs_error_is_fatal_on_server(req->wb_context->error))
646a6598813STrond Myklebust 		goto out_launder;
647a6598813STrond Myklebust 
648f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(pgio, req)) {
649074cc1deSTrond Myklebust 		ret = pgio->pg_error;
6500bcbf039SPeng Tao 		/*
651c373fff7STrond Myklebust 		 * Remove the problematic req upon fatal errors on the server
6520bcbf039SPeng Tao 		 */
6530bcbf039SPeng Tao 		if (nfs_error_is_fatal(ret)) {
6540bcbf039SPeng Tao 			nfs_context_set_write_error(req->wb_context, ret);
655c373fff7STrond Myklebust 			if (nfs_error_is_fatal_on_server(ret))
656a6598813STrond Myklebust 				goto out_launder;
657d6c843b9SPeng Tao 		}
6580bcbf039SPeng Tao 		nfs_redirty_request(req);
6590bcbf039SPeng Tao 		ret = -EAGAIN;
66040f90271STrond Myklebust 	} else
66140f90271STrond Myklebust 		nfs_add_stats(page_file_mapping(page)->host,
66240f90271STrond Myklebust 				NFSIOS_WRITEPAGES, 1);
663074cc1deSTrond Myklebust out:
664074cc1deSTrond Myklebust 	return ret;
665a6598813STrond Myklebust out_launder:
666a6598813STrond Myklebust 	nfs_write_error_remove_page(req);
667a6598813STrond Myklebust 	return ret;
668e261f51fSTrond Myklebust }
669e261f51fSTrond Myklebust 
670d6c843b9SPeng Tao static int nfs_do_writepage(struct page *page, struct writeback_control *wbc,
671c373fff7STrond Myklebust 			    struct nfs_pageio_descriptor *pgio)
672f758c885STrond Myklebust {
673cfb506e1STrond Myklebust 	int ret;
674f758c885STrond Myklebust 
6758cd79788SHuang Ying 	nfs_pageio_cond_complete(pgio, page_index(page));
6766d17d653STrond Myklebust 	ret = nfs_page_async_flush(pgio, page);
677cfb506e1STrond Myklebust 	if (ret == -EAGAIN) {
678cfb506e1STrond Myklebust 		redirty_page_for_writepage(wbc, page);
679cfb506e1STrond Myklebust 		ret = 0;
680cfb506e1STrond Myklebust 	}
681cfb506e1STrond Myklebust 	return ret;
682f758c885STrond Myklebust }
683f758c885STrond Myklebust 
684e261f51fSTrond Myklebust /*
6851da177e4SLinus Torvalds  * Write an mmapped page to the server.
6861da177e4SLinus Torvalds  */
687d6c843b9SPeng Tao static int nfs_writepage_locked(struct page *page,
688c373fff7STrond Myklebust 				struct writeback_control *wbc)
6891da177e4SLinus Torvalds {
690f758c885STrond Myklebust 	struct nfs_pageio_descriptor pgio;
69140f90271STrond Myklebust 	struct inode *inode = page_file_mapping(page)->host;
692e261f51fSTrond Myklebust 	int err;
6931da177e4SLinus Torvalds 
69440f90271STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
695811ed92eSTrond Myklebust 	nfs_pageio_init_write(&pgio, inode, 0,
696a20c93e3SChristoph Hellwig 				false, &nfs_async_write_completion_ops);
697c373fff7STrond Myklebust 	err = nfs_do_writepage(page, wbc, &pgio);
698f758c885STrond Myklebust 	nfs_pageio_complete(&pgio);
699f758c885STrond Myklebust 	if (err < 0)
7004d770ccfSTrond Myklebust 		return err;
701f758c885STrond Myklebust 	if (pgio.pg_error < 0)
702f758c885STrond Myklebust 		return pgio.pg_error;
703f758c885STrond Myklebust 	return 0;
7044d770ccfSTrond Myklebust }
7054d770ccfSTrond Myklebust 
7064d770ccfSTrond Myklebust int nfs_writepage(struct page *page, struct writeback_control *wbc)
7074d770ccfSTrond Myklebust {
708f758c885STrond Myklebust 	int ret;
7094d770ccfSTrond Myklebust 
710c373fff7STrond Myklebust 	ret = nfs_writepage_locked(page, wbc);
7111da177e4SLinus Torvalds 	unlock_page(page);
712f758c885STrond Myklebust 	return ret;
713f758c885STrond Myklebust }
714f758c885STrond Myklebust 
715f758c885STrond Myklebust static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
716f758c885STrond Myklebust {
717f758c885STrond Myklebust 	int ret;
718f758c885STrond Myklebust 
719c373fff7STrond Myklebust 	ret = nfs_do_writepage(page, wbc, data);
720f758c885STrond Myklebust 	unlock_page(page);
721f758c885STrond Myklebust 	return ret;
7221da177e4SLinus Torvalds }
7231da177e4SLinus Torvalds 
724919e3bd9STrond Myklebust static void nfs_io_completion_commit(void *inode)
725919e3bd9STrond Myklebust {
726919e3bd9STrond Myklebust 	nfs_commit_inode(inode, 0);
727919e3bd9STrond Myklebust }
728919e3bd9STrond Myklebust 
7291da177e4SLinus Torvalds int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
7301da177e4SLinus Torvalds {
7311da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
732c63c7b05STrond Myklebust 	struct nfs_pageio_descriptor pgio;
733919e3bd9STrond Myklebust 	struct nfs_io_completion *ioc = nfs_io_completion_alloc(GFP_NOFS);
7341da177e4SLinus Torvalds 	int err;
7351da177e4SLinus Torvalds 
73691d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
73791d5b470SChuck Lever 
738919e3bd9STrond Myklebust 	if (ioc)
739919e3bd9STrond Myklebust 		nfs_io_completion_init(ioc, nfs_io_completion_commit, inode);
740919e3bd9STrond Myklebust 
741a20c93e3SChristoph Hellwig 	nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
742a20c93e3SChristoph Hellwig 				&nfs_async_write_completion_ops);
743919e3bd9STrond Myklebust 	pgio.pg_io_completion = ioc;
744f758c885STrond Myklebust 	err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
745c63c7b05STrond Myklebust 	nfs_pageio_complete(&pgio);
746919e3bd9STrond Myklebust 	nfs_io_completion_put(ioc);
74772cb77f4STrond Myklebust 
748f758c885STrond Myklebust 	if (err < 0)
74972cb77f4STrond Myklebust 		goto out_err;
75072cb77f4STrond Myklebust 	err = pgio.pg_error;
75172cb77f4STrond Myklebust 	if (err < 0)
75272cb77f4STrond Myklebust 		goto out_err;
753c63c7b05STrond Myklebust 	return 0;
75472cb77f4STrond Myklebust out_err:
75572cb77f4STrond Myklebust 	return err;
7561da177e4SLinus Torvalds }
7571da177e4SLinus Torvalds 
7581da177e4SLinus Torvalds /*
7591da177e4SLinus Torvalds  * Insert a write request into an inode
7601da177e4SLinus Torvalds  */
761d6d6dc7cSFred Isaman static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
7621da177e4SLinus Torvalds {
7631da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
764e7d39069STrond Myklebust 
7652bfc6e56SWeston Andros Adamson 	WARN_ON_ONCE(req->wb_this_page != req);
7662bfc6e56SWeston Andros Adamson 
767e7d39069STrond Myklebust 	/* Lock the request! */
7687ad84aa9STrond Myklebust 	nfs_lock_request(req);
769e7d39069STrond Myklebust 
770e7d39069STrond Myklebust 	spin_lock(&inode->i_lock);
771cb1410c7SWeston Andros Adamson 	if (!nfsi->nrequests &&
772cb1410c7SWeston Andros Adamson 	    NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
773a9a4a87aSTrond Myklebust 		inode->i_version++;
77429418aa4SMel Gorman 	/*
77529418aa4SMel Gorman 	 * Swap-space should not get truncated. Hence no need to plug the race
77629418aa4SMel Gorman 	 * with invalidate/truncate.
77729418aa4SMel Gorman 	 */
77829418aa4SMel Gorman 	if (likely(!PageSwapCache(req->wb_page))) {
7792df485a7STrond Myklebust 		set_bit(PG_MAPPED, &req->wb_flags);
780deb7d638STrond Myklebust 		SetPagePrivate(req->wb_page);
781277459d2STrond Myklebust 		set_page_private(req->wb_page, (unsigned long)req);
78229418aa4SMel Gorman 	}
783cb1410c7SWeston Andros Adamson 	nfsi->nrequests++;
78417089a29SWeston Andros Adamson 	/* this a head request for a page group - mark it as having an
785cb1410c7SWeston Andros Adamson 	 * extra reference so sub groups can follow suit.
786cb1410c7SWeston Andros Adamson 	 * This flag also informs pgio layer when to bump nrequests when
787cb1410c7SWeston Andros Adamson 	 * adding subrequests. */
78817089a29SWeston Andros Adamson 	WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
789c03b4024STrond Myklebust 	kref_get(&req->wb_kref);
790e7d39069STrond Myklebust 	spin_unlock(&inode->i_lock);
7911da177e4SLinus Torvalds }
7921da177e4SLinus Torvalds 
7931da177e4SLinus Torvalds /*
79489a09141SPeter Zijlstra  * Remove a write request from an inode
7951da177e4SLinus Torvalds  */
7961da177e4SLinus Torvalds static void nfs_inode_remove_request(struct nfs_page *req)
7971da177e4SLinus Torvalds {
7982b0143b5SDavid Howells 	struct inode *inode = d_inode(req->wb_context->dentry);
7991da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
80020633f04SWeston Andros Adamson 	struct nfs_page *head;
80120633f04SWeston Andros Adamson 
80220633f04SWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
80320633f04SWeston Andros Adamson 		head = req->wb_head;
8041da177e4SLinus Torvalds 
805587142f8STrond Myklebust 		spin_lock(&inode->i_lock);
80667911c8fSAnna Schumaker 		if (likely(head->wb_page && !PageSwapCache(head->wb_page))) {
80720633f04SWeston Andros Adamson 			set_page_private(head->wb_page, 0);
80820633f04SWeston Andros Adamson 			ClearPagePrivate(head->wb_page);
80920633f04SWeston Andros Adamson 			clear_bit(PG_MAPPED, &head->wb_flags);
81029418aa4SMel Gorman 		}
811cb1410c7SWeston Andros Adamson 		nfsi->nrequests--;
812cb1410c7SWeston Andros Adamson 		spin_unlock(&inode->i_lock);
813cb1410c7SWeston Andros Adamson 	} else {
814cb1410c7SWeston Andros Adamson 		spin_lock(&inode->i_lock);
815cb1410c7SWeston Andros Adamson 		nfsi->nrequests--;
816587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
81720633f04SWeston Andros Adamson 	}
81817089a29SWeston Andros Adamson 
81917089a29SWeston Andros Adamson 	if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
8201da177e4SLinus Torvalds 		nfs_release_request(req);
8211da177e4SLinus Torvalds }
8221da177e4SLinus Torvalds 
82361822ab5STrond Myklebust static void
8246d884e8fSFred nfs_mark_request_dirty(struct nfs_page *req)
82561822ab5STrond Myklebust {
82667911c8fSAnna Schumaker 	if (req->wb_page)
82761822ab5STrond Myklebust 		__set_page_dirty_nobuffers(req->wb_page);
82861822ab5STrond Myklebust }
82961822ab5STrond Myklebust 
8303a3908c8STrond Myklebust /*
8313a3908c8STrond Myklebust  * nfs_page_search_commits_for_head_request_locked
8323a3908c8STrond Myklebust  *
8333a3908c8STrond Myklebust  * Search through commit lists on @inode for the head request for @page.
8343a3908c8STrond Myklebust  * Must be called while holding the inode (which is cinfo) lock.
8353a3908c8STrond Myklebust  *
8363a3908c8STrond Myklebust  * Returns the head request if found, or NULL if not found.
8373a3908c8STrond Myklebust  */
8383a3908c8STrond Myklebust static struct nfs_page *
8393a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
8403a3908c8STrond Myklebust 						struct page *page)
8413a3908c8STrond Myklebust {
8423a3908c8STrond Myklebust 	struct nfs_page *freq, *t;
8433a3908c8STrond Myklebust 	struct nfs_commit_info cinfo;
8443a3908c8STrond Myklebust 	struct inode *inode = &nfsi->vfs_inode;
8453a3908c8STrond Myklebust 
8463a3908c8STrond Myklebust 	nfs_init_cinfo_from_inode(&cinfo, inode);
8473a3908c8STrond Myklebust 
8483a3908c8STrond Myklebust 	/* search through pnfs commit lists */
8493a3908c8STrond Myklebust 	freq = pnfs_search_commit_reqs(inode, &cinfo, page);
8503a3908c8STrond Myklebust 	if (freq)
8513a3908c8STrond Myklebust 		return freq->wb_head;
8523a3908c8STrond Myklebust 
8533a3908c8STrond Myklebust 	/* Linearly search the commit list for the correct request */
8543a3908c8STrond Myklebust 	list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
8553a3908c8STrond Myklebust 		if (freq->wb_page == page)
8563a3908c8STrond Myklebust 			return freq->wb_head;
8573a3908c8STrond Myklebust 	}
8583a3908c8STrond Myklebust 
8593a3908c8STrond Myklebust 	return NULL;
8603a3908c8STrond Myklebust }
8613a3908c8STrond Myklebust 
8628dd37758STrond Myklebust /**
86386d80f97STrond Myklebust  * nfs_request_add_commit_list_locked - add request to a commit list
86486d80f97STrond Myklebust  * @req: pointer to a struct nfs_page
86586d80f97STrond Myklebust  * @dst: commit list head
86686d80f97STrond Myklebust  * @cinfo: holds list lock and accounting info
86786d80f97STrond Myklebust  *
86886d80f97STrond Myklebust  * This sets the PG_CLEAN bit, updates the cinfo count of
86986d80f97STrond Myklebust  * number of outstanding requests requiring a commit as well as
87086d80f97STrond Myklebust  * the MM page stats.
87186d80f97STrond Myklebust  *
872fe238e60SDave Wysochanski  * The caller must hold cinfo->inode->i_lock, and the nfs_page lock.
87386d80f97STrond Myklebust  */
87486d80f97STrond Myklebust void
87586d80f97STrond Myklebust nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
87686d80f97STrond Myklebust 			    struct nfs_commit_info *cinfo)
87786d80f97STrond Myklebust {
87886d80f97STrond Myklebust 	set_bit(PG_CLEAN, &req->wb_flags);
87986d80f97STrond Myklebust 	nfs_list_add_request(req, dst);
88086d80f97STrond Myklebust 	cinfo->mds->ncommit++;
88186d80f97STrond Myklebust }
88286d80f97STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
88386d80f97STrond Myklebust 
88486d80f97STrond Myklebust /**
8858dd37758STrond Myklebust  * nfs_request_add_commit_list - add request to a commit list
8868dd37758STrond Myklebust  * @req: pointer to a struct nfs_page
887ea2cf228SFred Isaman  * @dst: commit list head
888ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
8898dd37758STrond Myklebust  *
890ea2cf228SFred Isaman  * This sets the PG_CLEAN bit, updates the cinfo count of
8918dd37758STrond Myklebust  * number of outstanding requests requiring a commit as well as
8928dd37758STrond Myklebust  * the MM page stats.
8938dd37758STrond Myklebust  *
894ea2cf228SFred Isaman  * The caller must _not_ hold the cinfo->lock, but must be
8958dd37758STrond Myklebust  * holding the nfs_page lock.
8968dd37758STrond Myklebust  */
8978dd37758STrond Myklebust void
8986272dcc6SAnna Schumaker nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
8998dd37758STrond Myklebust {
900fe238e60SDave Wysochanski 	spin_lock(&cinfo->inode->i_lock);
9016272dcc6SAnna Schumaker 	nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
902fe238e60SDave Wysochanski 	spin_unlock(&cinfo->inode->i_lock);
90367911c8fSAnna Schumaker 	if (req->wb_page)
90486d80f97STrond Myklebust 		nfs_mark_page_unstable(req->wb_page, cinfo);
9058dd37758STrond Myklebust }
9068dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
9078dd37758STrond Myklebust 
9088dd37758STrond Myklebust /**
9098dd37758STrond Myklebust  * nfs_request_remove_commit_list - Remove request from a commit list
9108dd37758STrond Myklebust  * @req: pointer to a nfs_page
911ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
9128dd37758STrond Myklebust  *
913ea2cf228SFred Isaman  * This clears the PG_CLEAN bit, and updates the cinfo's count of
9148dd37758STrond Myklebust  * number of outstanding requests requiring a commit
9158dd37758STrond Myklebust  * It does not update the MM page stats.
9168dd37758STrond Myklebust  *
917ea2cf228SFred Isaman  * The caller _must_ hold the cinfo->lock and the nfs_page lock.
9188dd37758STrond Myklebust  */
9198dd37758STrond Myklebust void
920ea2cf228SFred Isaman nfs_request_remove_commit_list(struct nfs_page *req,
921ea2cf228SFred Isaman 			       struct nfs_commit_info *cinfo)
9228dd37758STrond Myklebust {
9238dd37758STrond Myklebust 	if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
9248dd37758STrond Myklebust 		return;
9258dd37758STrond Myklebust 	nfs_list_remove_request(req);
926ea2cf228SFred Isaman 	cinfo->mds->ncommit--;
9278dd37758STrond Myklebust }
9288dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
9298dd37758STrond Myklebust 
930ea2cf228SFred Isaman static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
931ea2cf228SFred Isaman 				      struct inode *inode)
932ea2cf228SFred Isaman {
933fe238e60SDave Wysochanski 	cinfo->inode = inode;
934ea2cf228SFred Isaman 	cinfo->mds = &NFS_I(inode)->commit_info;
935ea2cf228SFred Isaman 	cinfo->ds = pnfs_get_ds_info(inode);
936b359f9d0SFred Isaman 	cinfo->dreq = NULL;
937f453a54aSFred Isaman 	cinfo->completion_ops = &nfs_commit_completion_ops;
938ea2cf228SFred Isaman }
939ea2cf228SFred Isaman 
940ea2cf228SFred Isaman void nfs_init_cinfo(struct nfs_commit_info *cinfo,
941ea2cf228SFred Isaman 		    struct inode *inode,
942ea2cf228SFred Isaman 		    struct nfs_direct_req *dreq)
943ea2cf228SFred Isaman {
9441763da12SFred Isaman 	if (dreq)
9451763da12SFred Isaman 		nfs_init_cinfo_from_dreq(cinfo, dreq);
9461763da12SFred Isaman 	else
947ea2cf228SFred Isaman 		nfs_init_cinfo_from_inode(cinfo, inode);
948ea2cf228SFred Isaman }
949ea2cf228SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_cinfo);
9508dd37758STrond Myklebust 
9511da177e4SLinus Torvalds /*
9521da177e4SLinus Torvalds  * Add a request to the inode's commit list.
9531da177e4SLinus Torvalds  */
9541763da12SFred Isaman void
955ea2cf228SFred Isaman nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
956b57ff130SWeston Andros Adamson 			struct nfs_commit_info *cinfo, u32 ds_commit_idx)
9571da177e4SLinus Torvalds {
958b57ff130SWeston Andros Adamson 	if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
9598dd37758STrond Myklebust 		return;
9606272dcc6SAnna Schumaker 	nfs_request_add_commit_list(req, cinfo);
9611da177e4SLinus Torvalds }
9628e821cadSTrond Myklebust 
963d6d6dc7cSFred Isaman static void
964d6d6dc7cSFred Isaman nfs_clear_page_commit(struct page *page)
965e468bae9STrond Myklebust {
96611fb9989SMel Gorman 	dec_node_page_state(page, NR_UNSTABLE_NFS);
96793f78d88STejun Heo 	dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb,
96893f78d88STejun Heo 		    WB_RECLAIMABLE);
969e468bae9STrond Myklebust }
970d6d6dc7cSFred Isaman 
971411a99adSWeston Andros Adamson /* Called holding inode (/cinfo) lock */
9728dd37758STrond Myklebust static void
973d6d6dc7cSFred Isaman nfs_clear_request_commit(struct nfs_page *req)
974d6d6dc7cSFred Isaman {
9758dd37758STrond Myklebust 	if (test_bit(PG_CLEAN, &req->wb_flags)) {
9762b0143b5SDavid Howells 		struct inode *inode = d_inode(req->wb_context->dentry);
977ea2cf228SFred Isaman 		struct nfs_commit_info cinfo;
978d6d6dc7cSFred Isaman 
979ea2cf228SFred Isaman 		nfs_init_cinfo_from_inode(&cinfo, inode);
980ea2cf228SFred Isaman 		if (!pnfs_clear_request_commit(req, &cinfo)) {
981ea2cf228SFred Isaman 			nfs_request_remove_commit_list(req, &cinfo);
982d6d6dc7cSFred Isaman 		}
9838dd37758STrond Myklebust 		nfs_clear_page_commit(req->wb_page);
9848dd37758STrond Myklebust 	}
985e468bae9STrond Myklebust }
986e468bae9STrond Myklebust 
987d45f60c6SWeston Andros Adamson int nfs_write_need_commit(struct nfs_pgio_header *hdr)
9888e821cadSTrond Myklebust {
989c65e6254SWeston Andros Adamson 	if (hdr->verf.committed == NFS_DATA_SYNC)
990d45f60c6SWeston Andros Adamson 		return hdr->lseg == NULL;
991c65e6254SWeston Andros Adamson 	return hdr->verf.committed != NFS_FILE_SYNC;
9928e821cadSTrond Myklebust }
9938e821cadSTrond Myklebust 
994919e3bd9STrond Myklebust static void nfs_async_write_init(struct nfs_pgio_header *hdr)
995919e3bd9STrond Myklebust {
996919e3bd9STrond Myklebust 	nfs_io_completion_get(hdr->io_completion);
997919e3bd9STrond Myklebust }
998919e3bd9STrond Myklebust 
999061ae2edSFred Isaman static void nfs_write_completion(struct nfs_pgio_header *hdr)
10006c75dc0dSFred Isaman {
1001ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
10026c75dc0dSFred Isaman 	unsigned long bytes = 0;
10036c75dc0dSFred Isaman 
10046c75dc0dSFred Isaman 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
10056c75dc0dSFred Isaman 		goto out;
1006ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
10076c75dc0dSFred Isaman 	while (!list_empty(&hdr->pages)) {
10086c75dc0dSFred Isaman 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
10096c75dc0dSFred Isaman 
10106c75dc0dSFred Isaman 		bytes += req->wb_bytes;
10116c75dc0dSFred Isaman 		nfs_list_remove_request(req);
10126c75dc0dSFred Isaman 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
10136c75dc0dSFred Isaman 		    (hdr->good_bytes < bytes)) {
1014d1182b33STrond Myklebust 			nfs_set_pageerror(req->wb_page);
10156c75dc0dSFred Isaman 			nfs_context_set_write_error(req->wb_context, hdr->error);
10166c75dc0dSFred Isaman 			goto remove_req;
10176c75dc0dSFred Isaman 		}
1018c65e6254SWeston Andros Adamson 		if (nfs_write_need_commit(hdr)) {
1019f79d06f5SAnna Schumaker 			memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
1020b57ff130SWeston Andros Adamson 			nfs_mark_request_commit(req, hdr->lseg, &cinfo,
1021a7d42ddbSWeston Andros Adamson 				hdr->pgio_mirror_idx);
10226c75dc0dSFred Isaman 			goto next;
10236c75dc0dSFred Isaman 		}
10246c75dc0dSFred Isaman remove_req:
10256c75dc0dSFred Isaman 		nfs_inode_remove_request(req);
10266c75dc0dSFred Isaman next:
102720633f04SWeston Andros Adamson 		nfs_end_page_writeback(req);
10283aff4ebbSTrond Myklebust 		nfs_release_request(req);
10296c75dc0dSFred Isaman 	}
10306c75dc0dSFred Isaman out:
1031919e3bd9STrond Myklebust 	nfs_io_completion_put(hdr->io_completion);
10326c75dc0dSFred Isaman 	hdr->release(hdr);
10336c75dc0dSFred Isaman }
10346c75dc0dSFred Isaman 
1035ce59515cSAnna Schumaker unsigned long
1036ea2cf228SFred Isaman nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
1037fb8a1f11STrond Myklebust {
1038ea2cf228SFred Isaman 	return cinfo->mds->ncommit;
1039fb8a1f11STrond Myklebust }
1040fb8a1f11STrond Myklebust 
1041fe238e60SDave Wysochanski /* cinfo->inode->i_lock held by caller */
10421763da12SFred Isaman int
1043ea2cf228SFred Isaman nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
1044ea2cf228SFred Isaman 		     struct nfs_commit_info *cinfo, int max)
1045d6d6dc7cSFred Isaman {
1046d6d6dc7cSFred Isaman 	struct nfs_page *req, *tmp;
1047d6d6dc7cSFred Isaman 	int ret = 0;
1048d6d6dc7cSFred Isaman 
1049d6d6dc7cSFred Isaman 	list_for_each_entry_safe(req, tmp, src, wb_list) {
10508dd37758STrond Myklebust 		if (!nfs_lock_request(req))
10518dd37758STrond Myklebust 			continue;
10527ad84aa9STrond Myklebust 		kref_get(&req->wb_kref);
1053fe238e60SDave Wysochanski 		if (cond_resched_lock(&cinfo->inode->i_lock))
10543b3be88dSTrond Myklebust 			list_safe_reset_next(req, tmp, wb_list);
1055ea2cf228SFred Isaman 		nfs_request_remove_commit_list(req, cinfo);
10568dd37758STrond Myklebust 		nfs_list_add_request(req, dst);
1057d6d6dc7cSFred Isaman 		ret++;
10581763da12SFred Isaman 		if ((ret == max) && !cinfo->dreq)
1059d6d6dc7cSFred Isaman 			break;
1060d6d6dc7cSFred Isaman 	}
1061d6d6dc7cSFred Isaman 	return ret;
1062d6d6dc7cSFred Isaman }
1063d6d6dc7cSFred Isaman 
10641da177e4SLinus Torvalds /*
10651da177e4SLinus Torvalds  * nfs_scan_commit - Scan an inode for commit requests
10661da177e4SLinus Torvalds  * @inode: NFS inode to scan
1067ea2cf228SFred Isaman  * @dst: mds destination list
1068ea2cf228SFred Isaman  * @cinfo: mds and ds lists of reqs ready to commit
10691da177e4SLinus Torvalds  *
10701da177e4SLinus Torvalds  * Moves requests from the inode's 'commit' request list.
10711da177e4SLinus Torvalds  * The requests are *not* checked to ensure that they form a contiguous set.
10721da177e4SLinus Torvalds  */
10731763da12SFred Isaman int
1074ea2cf228SFred Isaman nfs_scan_commit(struct inode *inode, struct list_head *dst,
1075ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
10761da177e4SLinus Torvalds {
1077d6d6dc7cSFred Isaman 	int ret = 0;
1078fb8a1f11STrond Myklebust 
1079fe238e60SDave Wysochanski 	spin_lock(&cinfo->inode->i_lock);
1080ea2cf228SFred Isaman 	if (cinfo->mds->ncommit > 0) {
10818dd37758STrond Myklebust 		const int max = INT_MAX;
1082d6d6dc7cSFred Isaman 
1083ea2cf228SFred Isaman 		ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1084ea2cf228SFred Isaman 					   cinfo, max);
1085ea2cf228SFred Isaman 		ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
1086d6d6dc7cSFred Isaman 	}
1087fe238e60SDave Wysochanski 	spin_unlock(&cinfo->inode->i_lock);
1088ff778d02STrond Myklebust 	return ret;
10891da177e4SLinus Torvalds }
1090d6d6dc7cSFred Isaman 
10911da177e4SLinus Torvalds /*
1092e7d39069STrond Myklebust  * Search for an existing write request, and attempt to update
1093e7d39069STrond Myklebust  * it to reflect a new dirty region on a given page.
10941da177e4SLinus Torvalds  *
1095e7d39069STrond Myklebust  * If the attempt fails, then the existing request is flushed out
1096e7d39069STrond Myklebust  * to disk.
10971da177e4SLinus Torvalds  */
1098e7d39069STrond Myklebust static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
1099e7d39069STrond Myklebust 		struct page *page,
1100e7d39069STrond Myklebust 		unsigned int offset,
1101e7d39069STrond Myklebust 		unsigned int bytes)
11021da177e4SLinus Torvalds {
1103e7d39069STrond Myklebust 	struct nfs_page *req;
1104e7d39069STrond Myklebust 	unsigned int rqend;
1105e7d39069STrond Myklebust 	unsigned int end;
11061da177e4SLinus Torvalds 	int error;
1107277459d2STrond Myklebust 
1108e7d39069STrond Myklebust 	end = offset + bytes;
1109e7d39069STrond Myklebust 
1110e7d39069STrond Myklebust 	for (;;) {
11111403390dSTrond Myklebust 		if (!(PagePrivate(page) || PageSwapCache(page)))
11121403390dSTrond Myklebust 			return NULL;
11131403390dSTrond Myklebust 		spin_lock(&inode->i_lock);
111484d3a9a9SWeston Andros Adamson 		req = nfs_page_find_head_request_locked(NFS_I(inode), page);
1115e7d39069STrond Myklebust 		if (req == NULL)
1116e7d39069STrond Myklebust 			goto out_unlock;
1117e7d39069STrond Myklebust 
11182bfc6e56SWeston Andros Adamson 		/* should be handled by nfs_flush_incompatible */
11192bfc6e56SWeston Andros Adamson 		WARN_ON_ONCE(req->wb_head != req);
11202bfc6e56SWeston Andros Adamson 		WARN_ON_ONCE(req->wb_this_page != req);
11212bfc6e56SWeston Andros Adamson 
1122e7d39069STrond Myklebust 		rqend = req->wb_offset + req->wb_bytes;
1123e7d39069STrond Myklebust 		/*
1124e7d39069STrond Myklebust 		 * Tell the caller to flush out the request if
1125e7d39069STrond Myklebust 		 * the offsets are non-contiguous.
1126e7d39069STrond Myklebust 		 * Note: nfs_flush_incompatible() will already
1127e7d39069STrond Myklebust 		 * have flushed out requests having wrong owners.
1128e7d39069STrond Myklebust 		 */
1129e468bae9STrond Myklebust 		if (offset > rqend
1130e7d39069STrond Myklebust 		    || end < req->wb_offset)
1131e7d39069STrond Myklebust 			goto out_flushme;
1132e7d39069STrond Myklebust 
11337ad84aa9STrond Myklebust 		if (nfs_lock_request(req))
1134e7d39069STrond Myklebust 			break;
1135e7d39069STrond Myklebust 
1136e7d39069STrond Myklebust 		/* The request is locked, so wait and then retry */
1137587142f8STrond Myklebust 		spin_unlock(&inode->i_lock);
11381da177e4SLinus Torvalds 		error = nfs_wait_on_request(req);
11391da177e4SLinus Torvalds 		nfs_release_request(req);
1140e7d39069STrond Myklebust 		if (error != 0)
1141e7d39069STrond Myklebust 			goto out_err;
11421da177e4SLinus Torvalds 	}
11431da177e4SLinus Torvalds 
11441da177e4SLinus Torvalds 	/* Okay, the request matches. Update the region */
11451da177e4SLinus Torvalds 	if (offset < req->wb_offset) {
11461da177e4SLinus Torvalds 		req->wb_offset = offset;
11471da177e4SLinus Torvalds 		req->wb_pgbase = offset;
11481da177e4SLinus Torvalds 	}
11491da177e4SLinus Torvalds 	if (end > rqend)
11501da177e4SLinus Torvalds 		req->wb_bytes = end - req->wb_offset;
1151e7d39069STrond Myklebust 	else
1152e7d39069STrond Myklebust 		req->wb_bytes = rqend - req->wb_offset;
1153e7d39069STrond Myklebust out_unlock:
1154ca138f36SFred Isaman 	if (req)
11558dd37758STrond Myklebust 		nfs_clear_request_commit(req);
1156411a99adSWeston Andros Adamson 	spin_unlock(&inode->i_lock);
1157e7d39069STrond Myklebust 	return req;
1158e7d39069STrond Myklebust out_flushme:
1159e7d39069STrond Myklebust 	spin_unlock(&inode->i_lock);
1160e7d39069STrond Myklebust 	nfs_release_request(req);
1161e7d39069STrond Myklebust 	error = nfs_wb_page(inode, page);
1162e7d39069STrond Myklebust out_err:
1163e7d39069STrond Myklebust 	return ERR_PTR(error);
1164e7d39069STrond Myklebust }
11651da177e4SLinus Torvalds 
1166e7d39069STrond Myklebust /*
1167e7d39069STrond Myklebust  * Try to update an existing write request, or create one if there is none.
1168e7d39069STrond Myklebust  *
1169e7d39069STrond Myklebust  * Note: Should always be called with the Page Lock held to prevent races
1170e7d39069STrond Myklebust  * if we have to add a new request. Also assumes that the caller has
1171e7d39069STrond Myklebust  * already called nfs_flush_incompatible() if necessary.
1172e7d39069STrond Myklebust  */
1173e7d39069STrond Myklebust static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1174e7d39069STrond Myklebust 		struct page *page, unsigned int offset, unsigned int bytes)
1175e7d39069STrond Myklebust {
1176d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
1177e7d39069STrond Myklebust 	struct nfs_page	*req;
1178e7d39069STrond Myklebust 
1179e7d39069STrond Myklebust 	req = nfs_try_to_update_request(inode, page, offset, bytes);
1180e7d39069STrond Myklebust 	if (req != NULL)
1181e7d39069STrond Myklebust 		goto out;
11822bfc6e56SWeston Andros Adamson 	req = nfs_create_request(ctx, page, NULL, offset, bytes);
1183e7d39069STrond Myklebust 	if (IS_ERR(req))
1184e7d39069STrond Myklebust 		goto out;
1185d6d6dc7cSFred Isaman 	nfs_inode_add_request(inode, req);
1186efc91ed0STrond Myklebust out:
118761e930a9STrond Myklebust 	return req;
11881da177e4SLinus Torvalds }
11891da177e4SLinus Torvalds 
1190e7d39069STrond Myklebust static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1191e7d39069STrond Myklebust 		unsigned int offset, unsigned int count)
1192e7d39069STrond Myklebust {
1193e7d39069STrond Myklebust 	struct nfs_page	*req;
1194e7d39069STrond Myklebust 
1195e7d39069STrond Myklebust 	req = nfs_setup_write_request(ctx, page, offset, count);
1196e7d39069STrond Myklebust 	if (IS_ERR(req))
1197e7d39069STrond Myklebust 		return PTR_ERR(req);
1198e7d39069STrond Myklebust 	/* Update file length */
1199e7d39069STrond Myklebust 	nfs_grow_file(page, offset, count);
1200d72ddcbaSWeston Andros Adamson 	nfs_mark_uptodate(req);
1201a6305ddbSTrond Myklebust 	nfs_mark_request_dirty(req);
12021d1afcbcSTrond Myklebust 	nfs_unlock_and_release_request(req);
1203e7d39069STrond Myklebust 	return 0;
1204e7d39069STrond Myklebust }
1205e7d39069STrond Myklebust 
12061da177e4SLinus Torvalds int nfs_flush_incompatible(struct file *file, struct page *page)
12071da177e4SLinus Torvalds {
1208cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
12092a369153STrond Myklebust 	struct nfs_lock_context *l_ctx;
1210bd61e0a9SJeff Layton 	struct file_lock_context *flctx = file_inode(file)->i_flctx;
12111da177e4SLinus Torvalds 	struct nfs_page	*req;
12121a54533eSTrond Myklebust 	int do_flush, status;
12131da177e4SLinus Torvalds 	/*
12141da177e4SLinus Torvalds 	 * Look for a request corresponding to this page. If there
12151da177e4SLinus Torvalds 	 * is one, and it belongs to another file, we flush it out
12161da177e4SLinus Torvalds 	 * before we try to copy anything into the page. Do this
12171da177e4SLinus Torvalds 	 * due to the lack of an ACCESS-type call in NFSv2.
12181da177e4SLinus Torvalds 	 * Also do the same if we find a request from an existing
12191da177e4SLinus Torvalds 	 * dropped page.
12201da177e4SLinus Torvalds 	 */
12211a54533eSTrond Myklebust 	do {
122284d3a9a9SWeston Andros Adamson 		req = nfs_page_find_head_request(page);
12231a54533eSTrond Myklebust 		if (req == NULL)
12241a54533eSTrond Myklebust 			return 0;
12252a369153STrond Myklebust 		l_ctx = req->wb_lock_context;
1226138a2935STrond Myklebust 		do_flush = req->wb_page != page ||
1227138a2935STrond Myklebust 			!nfs_match_open_context(req->wb_context, ctx);
12282bfc6e56SWeston Andros Adamson 		/* for now, flush if more than 1 request in page_group */
12292bfc6e56SWeston Andros Adamson 		do_flush |= req->wb_this_page != req;
1230bd61e0a9SJeff Layton 		if (l_ctx && flctx &&
1231bd61e0a9SJeff Layton 		    !(list_empty_careful(&flctx->flc_posix) &&
1232bd61e0a9SJeff Layton 		      list_empty_careful(&flctx->flc_flock))) {
1233d51fdb87SNeilBrown 			do_flush |= l_ctx->lockowner != current->files;
12345263e31eSJeff Layton 		}
12351da177e4SLinus Torvalds 		nfs_release_request(req);
12361a54533eSTrond Myklebust 		if (!do_flush)
12371a54533eSTrond Myklebust 			return 0;
1238d56b4ddfSMel Gorman 		status = nfs_wb_page(page_file_mapping(page)->host, page);
12391a54533eSTrond Myklebust 	} while (status == 0);
12401a54533eSTrond Myklebust 	return status;
12411da177e4SLinus Torvalds }
12421da177e4SLinus Torvalds 
12431da177e4SLinus Torvalds /*
1244dc24826bSAndy Adamson  * Avoid buffered writes when a open context credential's key would
1245dc24826bSAndy Adamson  * expire soon.
1246dc24826bSAndy Adamson  *
1247dc24826bSAndy Adamson  * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1248dc24826bSAndy Adamson  *
1249dc24826bSAndy Adamson  * Return 0 and set a credential flag which triggers the inode to flush
1250dc24826bSAndy Adamson  * and performs  NFS_FILE_SYNC writes if the key will expired within
1251dc24826bSAndy Adamson  * RPC_KEY_EXPIRE_TIMEO.
1252dc24826bSAndy Adamson  */
1253dc24826bSAndy Adamson int
1254dc24826bSAndy Adamson nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1255dc24826bSAndy Adamson {
1256dc24826bSAndy Adamson 	struct nfs_open_context *ctx = nfs_file_open_context(filp);
1257dc24826bSAndy Adamson 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1258dc24826bSAndy Adamson 
1259dc24826bSAndy Adamson 	return rpcauth_key_timeout_notify(auth, ctx->cred);
1260dc24826bSAndy Adamson }
1261dc24826bSAndy Adamson 
1262dc24826bSAndy Adamson /*
1263dc24826bSAndy Adamson  * Test if the open context credential key is marked to expire soon.
1264dc24826bSAndy Adamson  */
1265ce52914eSScott Mayhew bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
1266dc24826bSAndy Adamson {
1267ce52914eSScott Mayhew 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1268ce52914eSScott Mayhew 
1269ce52914eSScott Mayhew 	return rpcauth_cred_key_to_expire(auth, ctx->cred);
1270dc24826bSAndy Adamson }
1271dc24826bSAndy Adamson 
1272dc24826bSAndy Adamson /*
12735d47a356STrond Myklebust  * If the page cache is marked as unsafe or invalid, then we can't rely on
12745d47a356STrond Myklebust  * the PageUptodate() flag. In this case, we will need to turn off
12755d47a356STrond Myklebust  * write optimisations that depend on the page contents being correct.
12765d47a356STrond Myklebust  */
12778d197a56STrond Myklebust static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
12785d47a356STrond Myklebust {
1279d529ef83SJeff Layton 	struct nfs_inode *nfsi = NFS_I(inode);
1280d529ef83SJeff Layton 
12818d197a56STrond Myklebust 	if (nfs_have_delegated_attributes(inode))
12828d197a56STrond Myklebust 		goto out;
128318dd78c4SScott Mayhew 	if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1284d529ef83SJeff Layton 		return false;
12854db72b40SJeff Layton 	smp_rmb();
1286d529ef83SJeff Layton 	if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
12878d197a56STrond Myklebust 		return false;
12888d197a56STrond Myklebust out:
128918dd78c4SScott Mayhew 	if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
129018dd78c4SScott Mayhew 		return false;
12918d197a56STrond Myklebust 	return PageUptodate(page) != 0;
12925d47a356STrond Myklebust }
12935d47a356STrond Myklebust 
12945263e31eSJeff Layton static bool
12955263e31eSJeff Layton is_whole_file_wrlock(struct file_lock *fl)
12965263e31eSJeff Layton {
12975263e31eSJeff Layton 	return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
12985263e31eSJeff Layton 			fl->fl_type == F_WRLCK;
12995263e31eSJeff Layton }
13005263e31eSJeff Layton 
1301c7559663SScott Mayhew /* If we know the page is up to date, and we're not using byte range locks (or
1302c7559663SScott Mayhew  * if we have the whole file locked for writing), it may be more efficient to
1303c7559663SScott Mayhew  * extend the write to cover the entire page in order to avoid fragmentation
1304c7559663SScott Mayhew  * inefficiencies.
1305c7559663SScott Mayhew  *
1306263b4509SScott Mayhew  * If the file is opened for synchronous writes then we can just skip the rest
1307263b4509SScott Mayhew  * of the checks.
1308c7559663SScott Mayhew  */
1309c7559663SScott Mayhew static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1310c7559663SScott Mayhew {
13115263e31eSJeff Layton 	int ret;
13125263e31eSJeff Layton 	struct file_lock_context *flctx = inode->i_flctx;
13135263e31eSJeff Layton 	struct file_lock *fl;
13145263e31eSJeff Layton 
1315c7559663SScott Mayhew 	if (file->f_flags & O_DSYNC)
1316c7559663SScott Mayhew 		return 0;
1317263b4509SScott Mayhew 	if (!nfs_write_pageuptodate(page, inode))
1318263b4509SScott Mayhew 		return 0;
1319c7559663SScott Mayhew 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1320c7559663SScott Mayhew 		return 1;
1321bd61e0a9SJeff Layton 	if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1322bd61e0a9SJeff Layton 		       list_empty_careful(&flctx->flc_posix)))
13238fa4592aSTrond Myklebust 		return 1;
13245263e31eSJeff Layton 
13255263e31eSJeff Layton 	/* Check to see if there are whole file write locks */
13265263e31eSJeff Layton 	ret = 0;
13276109c850SJeff Layton 	spin_lock(&flctx->flc_lock);
1328bd61e0a9SJeff Layton 	if (!list_empty(&flctx->flc_posix)) {
1329bd61e0a9SJeff Layton 		fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1330bd61e0a9SJeff Layton 					fl_list);
1331bd61e0a9SJeff Layton 		if (is_whole_file_wrlock(fl))
13325263e31eSJeff Layton 			ret = 1;
1333bd61e0a9SJeff Layton 	} else if (!list_empty(&flctx->flc_flock)) {
13345263e31eSJeff Layton 		fl = list_first_entry(&flctx->flc_flock, struct file_lock,
13355263e31eSJeff Layton 					fl_list);
13365263e31eSJeff Layton 		if (fl->fl_type == F_WRLCK)
13375263e31eSJeff Layton 			ret = 1;
13385263e31eSJeff Layton 	}
13396109c850SJeff Layton 	spin_unlock(&flctx->flc_lock);
13405263e31eSJeff Layton 	return ret;
1341c7559663SScott Mayhew }
1342c7559663SScott Mayhew 
13435d47a356STrond Myklebust /*
13441da177e4SLinus Torvalds  * Update and possibly write a cached page of an NFS file.
13451da177e4SLinus Torvalds  *
13461da177e4SLinus Torvalds  * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
13471da177e4SLinus Torvalds  * things with a page scheduled for an RPC call (e.g. invalidate it).
13481da177e4SLinus Torvalds  */
13491da177e4SLinus Torvalds int nfs_updatepage(struct file *file, struct page *page,
13501da177e4SLinus Torvalds 		unsigned int offset, unsigned int count)
13511da177e4SLinus Torvalds {
1352cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
1353d56b4ddfSMel Gorman 	struct inode	*inode = page_file_mapping(page)->host;
13541da177e4SLinus Torvalds 	int		status = 0;
13551da177e4SLinus Torvalds 
135691d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
135791d5b470SChuck Lever 
13586de1472fSAl Viro 	dprintk("NFS:       nfs_updatepage(%pD2 %d@%lld)\n",
13596de1472fSAl Viro 		file, count, (long long)(page_file_offset(page) + offset));
13601da177e4SLinus Torvalds 
1361149a4fddSBenjamin Coddington 	if (!count)
1362149a4fddSBenjamin Coddington 		goto out;
1363149a4fddSBenjamin Coddington 
1364c7559663SScott Mayhew 	if (nfs_can_extend_write(file, page, inode)) {
136549a70f27STrond Myklebust 		count = max(count + offset, nfs_page_length(page));
13661da177e4SLinus Torvalds 		offset = 0;
13671da177e4SLinus Torvalds 	}
13681da177e4SLinus Torvalds 
1369e21195a7STrond Myklebust 	status = nfs_writepage_setup(ctx, page, offset, count);
137003fa9e84STrond Myklebust 	if (status < 0)
137103fa9e84STrond Myklebust 		nfs_set_pageerror(page);
137259b7c05fSTrond Myklebust 	else
137359b7c05fSTrond Myklebust 		__set_page_dirty_nobuffers(page);
1374149a4fddSBenjamin Coddington out:
137548186c7dSChuck Lever 	dprintk("NFS:       nfs_updatepage returns %d (isize %lld)\n",
13761da177e4SLinus Torvalds 			status, (long long)i_size_read(inode));
13771da177e4SLinus Torvalds 	return status;
13781da177e4SLinus Torvalds }
13791da177e4SLinus Torvalds 
13803ff7576dSTrond Myklebust static int flush_task_priority(int how)
13811da177e4SLinus Torvalds {
13821da177e4SLinus Torvalds 	switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
13831da177e4SLinus Torvalds 		case FLUSH_HIGHPRI:
13841da177e4SLinus Torvalds 			return RPC_PRIORITY_HIGH;
13851da177e4SLinus Torvalds 		case FLUSH_LOWPRI:
13861da177e4SLinus Torvalds 			return RPC_PRIORITY_LOW;
13871da177e4SLinus Torvalds 	}
13881da177e4SLinus Torvalds 	return RPC_PRIORITY_NORMAL;
13891da177e4SLinus Torvalds }
13901da177e4SLinus Torvalds 
1391d45f60c6SWeston Andros Adamson static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1392d45f60c6SWeston Andros Adamson 			       struct rpc_message *msg,
1393abde71f4STom Haynes 			       const struct nfs_rpc_ops *rpc_ops,
13941ed26f33SAnna Schumaker 			       struct rpc_task_setup *task_setup_data, int how)
13951da177e4SLinus Torvalds {
13963ff7576dSTrond Myklebust 	int priority = flush_task_priority(how);
13971da177e4SLinus Torvalds 
13981ed26f33SAnna Schumaker 	task_setup_data->priority = priority;
1399abde71f4STom Haynes 	rpc_ops->write_setup(hdr, msg);
1400d138d5d1SAndy Adamson 
1401abde71f4STom Haynes 	nfs4_state_protect_write(NFS_SERVER(hdr->inode)->nfs_client,
1402d45f60c6SWeston Andros Adamson 				 &task_setup_data->rpc_client, msg, hdr);
1403275acaafSTrond Myklebust }
1404275acaafSTrond Myklebust 
14056d884e8fSFred /* If a nfs_flush_* function fails, it should remove reqs from @head and
14066d884e8fSFred  * call this on each, which will prepare them to be retried on next
14076d884e8fSFred  * writeback using standard nfs.
14086d884e8fSFred  */
14096d884e8fSFred static void nfs_redirty_request(struct nfs_page *req)
14106d884e8fSFred {
14116d884e8fSFred 	nfs_mark_request_dirty(req);
1412c7070113STrond Myklebust 	set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
141320633f04SWeston Andros Adamson 	nfs_end_page_writeback(req);
14143aff4ebbSTrond Myklebust 	nfs_release_request(req);
14156d884e8fSFred }
14166d884e8fSFred 
1417061ae2edSFred Isaman static void nfs_async_write_error(struct list_head *head)
14186c75dc0dSFred Isaman {
14196c75dc0dSFred Isaman 	struct nfs_page	*req;
14206c75dc0dSFred Isaman 
14216c75dc0dSFred Isaman 	while (!list_empty(head)) {
14226c75dc0dSFred Isaman 		req = nfs_list_entry(head->next);
14236c75dc0dSFred Isaman 		nfs_list_remove_request(req);
14246c75dc0dSFred Isaman 		nfs_redirty_request(req);
14256c75dc0dSFred Isaman 	}
14266c75dc0dSFred Isaman }
14276c75dc0dSFred Isaman 
1428dc602dd7STrond Myklebust static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1429dc602dd7STrond Myklebust {
1430dc602dd7STrond Myklebust 	nfs_async_write_error(&hdr->pages);
1431dc602dd7STrond Myklebust }
1432dc602dd7STrond Myklebust 
1433061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1434919e3bd9STrond Myklebust 	.init_hdr = nfs_async_write_init,
1435061ae2edSFred Isaman 	.error_cleanup = nfs_async_write_error,
1436061ae2edSFred Isaman 	.completion = nfs_write_completion,
1437dc602dd7STrond Myklebust 	.reschedule_io = nfs_async_write_reschedule_io,
1438061ae2edSFred Isaman };
1439061ae2edSFred Isaman 
144057208fa7SBryan Schumaker void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1441a20c93e3SChristoph Hellwig 			       struct inode *inode, int ioflags, bool force_mds,
1442061ae2edSFred Isaman 			       const struct nfs_pgio_completion_ops *compl_ops)
14431751c363STrond Myklebust {
1444a20c93e3SChristoph Hellwig 	struct nfs_server *server = NFS_SERVER(inode);
144541d8d5b7SAnna Schumaker 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1446a20c93e3SChristoph Hellwig 
1447a20c93e3SChristoph Hellwig #ifdef CONFIG_NFS_V4_1
1448a20c93e3SChristoph Hellwig 	if (server->pnfs_curr_ld && !force_mds)
1449a20c93e3SChristoph Hellwig 		pg_ops = server->pnfs_curr_ld->pg_write_ops;
1450a20c93e3SChristoph Hellwig #endif
14514a0de55cSAnna Schumaker 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
1452fbe77c30SBenjamin Coddington 			server->wsize, ioflags, GFP_NOIO);
14531751c363STrond Myklebust }
1454ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
14551751c363STrond Myklebust 
1456dce81290STrond Myklebust void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1457dce81290STrond Myklebust {
1458a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *mirror;
1459a7d42ddbSWeston Andros Adamson 
14606f29b9bbSKinglong Mee 	if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
14616f29b9bbSKinglong Mee 		pgio->pg_ops->pg_cleanup(pgio);
14626f29b9bbSKinglong Mee 
146341d8d5b7SAnna Schumaker 	pgio->pg_ops = &nfs_pgio_rw_ops;
1464a7d42ddbSWeston Andros Adamson 
1465a7d42ddbSWeston Andros Adamson 	nfs_pageio_stop_mirroring(pgio);
1466a7d42ddbSWeston Andros Adamson 
1467a7d42ddbSWeston Andros Adamson 	mirror = &pgio->pg_mirrors[0];
1468a7d42ddbSWeston Andros Adamson 	mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1469dce81290STrond Myklebust }
14701f945357STrond Myklebust EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1471dce81290STrond Myklebust 
14721da177e4SLinus Torvalds 
14730b7c0153SFred Isaman void nfs_commit_prepare(struct rpc_task *task, void *calldata)
14740b7c0153SFred Isaman {
14750b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
14760b7c0153SFred Isaman 
14770b7c0153SFred Isaman 	NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
14780b7c0153SFred Isaman }
14790b7c0153SFred Isaman 
14801f2edbe3STrond Myklebust /*
14811f2edbe3STrond Myklebust  * Special version of should_remove_suid() that ignores capabilities.
14821f2edbe3STrond Myklebust  */
14831f2edbe3STrond Myklebust static int nfs_should_remove_suid(const struct inode *inode)
14841f2edbe3STrond Myklebust {
14851f2edbe3STrond Myklebust 	umode_t mode = inode->i_mode;
14861f2edbe3STrond Myklebust 	int kill = 0;
1487788e7a89STrond Myklebust 
14881f2edbe3STrond Myklebust 	/* suid always must be killed */
14891f2edbe3STrond Myklebust 	if (unlikely(mode & S_ISUID))
14901f2edbe3STrond Myklebust 		kill = ATTR_KILL_SUID;
14911f2edbe3STrond Myklebust 
14921f2edbe3STrond Myklebust 	/*
14931f2edbe3STrond Myklebust 	 * sgid without any exec bits is just a mandatory locking mark; leave
14941f2edbe3STrond Myklebust 	 * it alone.  If some exec bits are set, it's a real sgid; kill it.
14951f2edbe3STrond Myklebust 	 */
14961f2edbe3STrond Myklebust 	if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
14971f2edbe3STrond Myklebust 		kill |= ATTR_KILL_SGID;
14981f2edbe3STrond Myklebust 
14991f2edbe3STrond Myklebust 	if (unlikely(kill && S_ISREG(mode)))
15001f2edbe3STrond Myklebust 		return kill;
15011f2edbe3STrond Myklebust 
15021f2edbe3STrond Myklebust 	return 0;
15031f2edbe3STrond Myklebust }
1504788e7a89STrond Myklebust 
1505a08a8cd3STrond Myklebust static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1506a08a8cd3STrond Myklebust 		struct nfs_fattr *fattr)
1507a08a8cd3STrond Myklebust {
1508a08a8cd3STrond Myklebust 	struct nfs_pgio_args *argp = &hdr->args;
1509a08a8cd3STrond Myklebust 	struct nfs_pgio_res *resp = &hdr->res;
15102b83d3deSTrond Myklebust 	u64 size = argp->offset + resp->count;
1511a08a8cd3STrond Myklebust 
1512a08a8cd3STrond Myklebust 	if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
15132b83d3deSTrond Myklebust 		fattr->size = size;
15142b83d3deSTrond Myklebust 	if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
15152b83d3deSTrond Myklebust 		fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
1516a08a8cd3STrond Myklebust 		return;
15172b83d3deSTrond Myklebust 	}
15182b83d3deSTrond Myklebust 	if (size != fattr->size)
1519a08a8cd3STrond Myklebust 		return;
1520a08a8cd3STrond Myklebust 	/* Set attribute barrier */
1521a08a8cd3STrond Myklebust 	nfs_fattr_set_barrier(fattr);
15222b83d3deSTrond Myklebust 	/* ...and update size */
15232b83d3deSTrond Myklebust 	fattr->valid |= NFS_ATTR_FATTR_SIZE;
1524a08a8cd3STrond Myklebust }
1525a08a8cd3STrond Myklebust 
1526a08a8cd3STrond Myklebust void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1527a08a8cd3STrond Myklebust {
15282b83d3deSTrond Myklebust 	struct nfs_fattr *fattr = &hdr->fattr;
1529a08a8cd3STrond Myklebust 	struct inode *inode = hdr->inode;
1530a08a8cd3STrond Myklebust 
1531a08a8cd3STrond Myklebust 	spin_lock(&inode->i_lock);
1532a08a8cd3STrond Myklebust 	nfs_writeback_check_extend(hdr, fattr);
1533a08a8cd3STrond Myklebust 	nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1534a08a8cd3STrond Myklebust 	spin_unlock(&inode->i_lock);
1535a08a8cd3STrond Myklebust }
1536a08a8cd3STrond Myklebust EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1537a08a8cd3STrond Myklebust 
15381da177e4SLinus Torvalds /*
15391da177e4SLinus Torvalds  * This function is called when the WRITE call is complete.
15401da177e4SLinus Torvalds  */
1541d45f60c6SWeston Andros Adamson static int nfs_writeback_done(struct rpc_task *task,
1542d45f60c6SWeston Andros Adamson 			      struct nfs_pgio_header *hdr,
15430eecb214SAnna Schumaker 			      struct inode *inode)
15441da177e4SLinus Torvalds {
1545788e7a89STrond Myklebust 	int status;
15461da177e4SLinus Torvalds 
1547f551e44fSChuck Lever 	/*
1548f551e44fSChuck Lever 	 * ->write_done will attempt to use post-op attributes to detect
1549f551e44fSChuck Lever 	 * conflicting writes by other clients.  A strict interpretation
1550f551e44fSChuck Lever 	 * of close-to-open would allow us to continue caching even if
1551f551e44fSChuck Lever 	 * another writer had changed the file, but some applications
1552f551e44fSChuck Lever 	 * depend on tighter cache coherency when writing.
1553f551e44fSChuck Lever 	 */
1554d45f60c6SWeston Andros Adamson 	status = NFS_PROTO(inode)->write_done(task, hdr);
1555788e7a89STrond Myklebust 	if (status != 0)
15560eecb214SAnna Schumaker 		return status;
1557d45f60c6SWeston Andros Adamson 	nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
155891d5b470SChuck Lever 
1559d45f60c6SWeston Andros Adamson 	if (hdr->res.verf->committed < hdr->args.stable &&
1560d45f60c6SWeston Andros Adamson 	    task->tk_status >= 0) {
15611da177e4SLinus Torvalds 		/* We tried a write call, but the server did not
15621da177e4SLinus Torvalds 		 * commit data to stable storage even though we
15631da177e4SLinus Torvalds 		 * requested it.
15641da177e4SLinus Torvalds 		 * Note: There is a known bug in Tru64 < 5.0 in which
15651da177e4SLinus Torvalds 		 *	 the server reports NFS_DATA_SYNC, but performs
15661da177e4SLinus Torvalds 		 *	 NFS_FILE_SYNC. We therefore implement this checking
15671da177e4SLinus Torvalds 		 *	 as a dprintk() in order to avoid filling syslog.
15681da177e4SLinus Torvalds 		 */
15691da177e4SLinus Torvalds 		static unsigned long    complain;
15701da177e4SLinus Torvalds 
1571a69aef14SFred Isaman 		/* Note this will print the MDS for a DS write */
15721da177e4SLinus Torvalds 		if (time_before(complain, jiffies)) {
15731da177e4SLinus Torvalds 			dprintk("NFS:       faulty NFS server %s:"
15741da177e4SLinus Torvalds 				" (committed = %d) != (stable = %d)\n",
1575cd841605SFred Isaman 				NFS_SERVER(inode)->nfs_client->cl_hostname,
1576d45f60c6SWeston Andros Adamson 				hdr->res.verf->committed, hdr->args.stable);
15771da177e4SLinus Torvalds 			complain = jiffies + 300 * HZ;
15781da177e4SLinus Torvalds 		}
15791da177e4SLinus Torvalds 	}
15801f2edbe3STrond Myklebust 
15811f2edbe3STrond Myklebust 	/* Deal with the suid/sgid bit corner case */
15821f2edbe3STrond Myklebust 	if (nfs_should_remove_suid(inode))
15831f2edbe3STrond Myklebust 		nfs_mark_for_revalidate(inode);
15840eecb214SAnna Schumaker 	return 0;
15850eecb214SAnna Schumaker }
15860eecb214SAnna Schumaker 
15870eecb214SAnna Schumaker /*
15880eecb214SAnna Schumaker  * This function is called when the WRITE call is complete.
15890eecb214SAnna Schumaker  */
1590d45f60c6SWeston Andros Adamson static void nfs_writeback_result(struct rpc_task *task,
1591d45f60c6SWeston Andros Adamson 				 struct nfs_pgio_header *hdr)
15920eecb214SAnna Schumaker {
1593d45f60c6SWeston Andros Adamson 	struct nfs_pgio_args	*argp = &hdr->args;
1594d45f60c6SWeston Andros Adamson 	struct nfs_pgio_res	*resp = &hdr->res;
15951f2edbe3STrond Myklebust 
15961f2edbe3STrond Myklebust 	if (resp->count < argp->count) {
15971da177e4SLinus Torvalds 		static unsigned long    complain;
15981da177e4SLinus Torvalds 
15996c75dc0dSFred Isaman 		/* This a short write! */
1600d45f60c6SWeston Andros Adamson 		nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
160191d5b470SChuck Lever 
16021da177e4SLinus Torvalds 		/* Has the server at least made some progress? */
16036c75dc0dSFred Isaman 		if (resp->count == 0) {
16046c75dc0dSFred Isaman 			if (time_before(complain, jiffies)) {
16056c75dc0dSFred Isaman 				printk(KERN_WARNING
16066c75dc0dSFred Isaman 				       "NFS: Server wrote zero bytes, expected %u.\n",
16076c75dc0dSFred Isaman 				       argp->count);
16086c75dc0dSFred Isaman 				complain = jiffies + 300 * HZ;
16096c75dc0dSFred Isaman 			}
1610d45f60c6SWeston Andros Adamson 			nfs_set_pgio_error(hdr, -EIO, argp->offset);
16116c75dc0dSFred Isaman 			task->tk_status = -EIO;
16126c75dc0dSFred Isaman 			return;
16136c75dc0dSFred Isaman 		}
1614f8417b48SKinglong Mee 
1615f8417b48SKinglong Mee 		/* For non rpc-based layout drivers, retry-through-MDS */
1616f8417b48SKinglong Mee 		if (!task->tk_ops) {
1617f8417b48SKinglong Mee 			hdr->pnfs_error = -EAGAIN;
1618f8417b48SKinglong Mee 			return;
1619f8417b48SKinglong Mee 		}
1620f8417b48SKinglong Mee 
16211da177e4SLinus Torvalds 		/* Was this an NFSv2 write or an NFSv3 stable write? */
16221da177e4SLinus Torvalds 		if (resp->verf->committed != NFS_UNSTABLE) {
16231da177e4SLinus Torvalds 			/* Resend from where the server left off */
1624d45f60c6SWeston Andros Adamson 			hdr->mds_offset += resp->count;
16251da177e4SLinus Torvalds 			argp->offset += resp->count;
16261da177e4SLinus Torvalds 			argp->pgbase += resp->count;
16271da177e4SLinus Torvalds 			argp->count -= resp->count;
16281da177e4SLinus Torvalds 		} else {
16291da177e4SLinus Torvalds 			/* Resend as a stable write in order to avoid
16301da177e4SLinus Torvalds 			 * headaches in the case of a server crash.
16311da177e4SLinus Torvalds 			 */
16321da177e4SLinus Torvalds 			argp->stable = NFS_FILE_SYNC;
16331da177e4SLinus Torvalds 		}
1634d00c5d43STrond Myklebust 		rpc_restart_call_prepare(task);
16351da177e4SLinus Torvalds 	}
16361da177e4SLinus Torvalds }
16371da177e4SLinus Torvalds 
1638af7cf057STrond Myklebust static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
163971d0a611STrond Myklebust {
1640af7cf057STrond Myklebust 	return wait_on_atomic_t(&cinfo->rpcs_out,
1641af7cf057STrond Myklebust 			nfs_wait_atomic_killable, TASK_KILLABLE);
1642af7cf057STrond Myklebust }
1643af7cf057STrond Myklebust 
1644af7cf057STrond Myklebust static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1645af7cf057STrond Myklebust {
1646af7cf057STrond Myklebust 	atomic_inc(&cinfo->rpcs_out);
1647af7cf057STrond Myklebust }
1648af7cf057STrond Myklebust 
1649af7cf057STrond Myklebust static void nfs_commit_end(struct nfs_mds_commit_info *cinfo)
1650af7cf057STrond Myklebust {
1651af7cf057STrond Myklebust 	if (atomic_dec_and_test(&cinfo->rpcs_out))
1652af7cf057STrond Myklebust 		wake_up_atomic_t(&cinfo->rpcs_out);
165371d0a611STrond Myklebust }
165471d0a611STrond Myklebust 
16550b7c0153SFred Isaman void nfs_commitdata_release(struct nfs_commit_data *data)
16561da177e4SLinus Torvalds {
16570b7c0153SFred Isaman 	put_nfs_open_context(data->context);
16580b7c0153SFred Isaman 	nfs_commit_free(data);
16591da177e4SLinus Torvalds }
1660e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_release);
16611da177e4SLinus Torvalds 
16620b7c0153SFred Isaman int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1663c36aae9aSPeng Tao 			const struct nfs_rpc_ops *nfs_ops,
16649ace33cdSFred Isaman 			const struct rpc_call_ops *call_ops,
16659f0ec176SAndy Adamson 			int how, int flags)
16661da177e4SLinus Torvalds {
166707737691STrond Myklebust 	struct rpc_task *task;
16689ace33cdSFred Isaman 	int priority = flush_task_priority(how);
1669bdc7f021STrond Myklebust 	struct rpc_message msg = {
1670bdc7f021STrond Myklebust 		.rpc_argp = &data->args,
1671bdc7f021STrond Myklebust 		.rpc_resp = &data->res,
16729ace33cdSFred Isaman 		.rpc_cred = data->cred,
1673bdc7f021STrond Myklebust 	};
167484115e1cSTrond Myklebust 	struct rpc_task_setup task_setup_data = {
167507737691STrond Myklebust 		.task = &data->task,
16769ace33cdSFred Isaman 		.rpc_client = clnt,
1677bdc7f021STrond Myklebust 		.rpc_message = &msg,
16789ace33cdSFred Isaman 		.callback_ops = call_ops,
167984115e1cSTrond Myklebust 		.callback_data = data,
1680101070caSTrond Myklebust 		.workqueue = nfsiod_workqueue,
16819f0ec176SAndy Adamson 		.flags = RPC_TASK_ASYNC | flags,
16823ff7576dSTrond Myklebust 		.priority = priority,
168384115e1cSTrond Myklebust 	};
1684788e7a89STrond Myklebust 	/* Set up the initial task struct.  */
1685c36aae9aSPeng Tao 	nfs_ops->commit_setup(data, &msg);
16861da177e4SLinus Torvalds 
1687b4839ebeSKinglong Mee 	dprintk("NFS: initiated commit call\n");
1688bdc7f021STrond Myklebust 
16898c21c62cSWeston Andros Adamson 	nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client,
16908c21c62cSWeston Andros Adamson 		NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg);
16918c21c62cSWeston Andros Adamson 
169207737691STrond Myklebust 	task = rpc_run_task(&task_setup_data);
1693dbae4c73STrond Myklebust 	if (IS_ERR(task))
1694dbae4c73STrond Myklebust 		return PTR_ERR(task);
1695d2224e7aSJeff Layton 	if (how & FLUSH_SYNC)
1696d2224e7aSJeff Layton 		rpc_wait_for_completion_task(task);
169707737691STrond Myklebust 	rpc_put_task(task);
1698dbae4c73STrond Myklebust 	return 0;
16991da177e4SLinus Torvalds }
1700e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_initiate_commit);
17011da177e4SLinus Torvalds 
1702378520b8SPeng Tao static loff_t nfs_get_lwb(struct list_head *head)
1703378520b8SPeng Tao {
1704378520b8SPeng Tao 	loff_t lwb = 0;
1705378520b8SPeng Tao 	struct nfs_page *req;
1706378520b8SPeng Tao 
1707378520b8SPeng Tao 	list_for_each_entry(req, head, wb_list)
1708378520b8SPeng Tao 		if (lwb < (req_offset(req) + req->wb_bytes))
1709378520b8SPeng Tao 			lwb = req_offset(req) + req->wb_bytes;
1710378520b8SPeng Tao 
1711378520b8SPeng Tao 	return lwb;
1712378520b8SPeng Tao }
1713378520b8SPeng Tao 
17141da177e4SLinus Torvalds /*
17159ace33cdSFred Isaman  * Set up the argument/result storage required for the RPC call.
17169ace33cdSFred Isaman  */
17170b7c0153SFred Isaman void nfs_init_commit(struct nfs_commit_data *data,
1718988b6dceSFred Isaman 		     struct list_head *head,
1719f453a54aSFred Isaman 		     struct pnfs_layout_segment *lseg,
1720f453a54aSFred Isaman 		     struct nfs_commit_info *cinfo)
17219ace33cdSFred Isaman {
17229ace33cdSFred Isaman 	struct nfs_page *first = nfs_list_entry(head->next);
17232b0143b5SDavid Howells 	struct inode *inode = d_inode(first->wb_context->dentry);
17249ace33cdSFred Isaman 
17259ace33cdSFred Isaman 	/* Set up the RPC argument and reply structs
17269ace33cdSFred Isaman 	 * NB: take care not to mess about with data->commit et al. */
17279ace33cdSFred Isaman 
17289ace33cdSFred Isaman 	list_splice_init(head, &data->pages);
17299ace33cdSFred Isaman 
17309ace33cdSFred Isaman 	data->inode	  = inode;
17319ace33cdSFred Isaman 	data->cred	  = first->wb_context->cred;
1732988b6dceSFred Isaman 	data->lseg	  = lseg; /* reference transferred */
1733378520b8SPeng Tao 	/* only set lwb for pnfs commit */
1734378520b8SPeng Tao 	if (lseg)
1735378520b8SPeng Tao 		data->lwb = nfs_get_lwb(&data->pages);
17369ace33cdSFred Isaman 	data->mds_ops     = &nfs_commit_ops;
1737f453a54aSFred Isaman 	data->completion_ops = cinfo->completion_ops;
1738b359f9d0SFred Isaman 	data->dreq	  = cinfo->dreq;
17399ace33cdSFred Isaman 
17409ace33cdSFred Isaman 	data->args.fh     = NFS_FH(data->inode);
17419ace33cdSFred Isaman 	/* Note: we always request a commit of the entire inode */
17429ace33cdSFred Isaman 	data->args.offset = 0;
17439ace33cdSFred Isaman 	data->args.count  = 0;
17440b7c0153SFred Isaman 	data->context     = get_nfs_open_context(first->wb_context);
17459ace33cdSFred Isaman 	data->res.fattr   = &data->fattr;
17469ace33cdSFred Isaman 	data->res.verf    = &data->verf;
17479ace33cdSFred Isaman 	nfs_fattr_init(&data->fattr);
17489ace33cdSFred Isaman }
1749e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_commit);
17509ace33cdSFred Isaman 
1751e0c2b380SFred Isaman void nfs_retry_commit(struct list_head *page_list,
1752ea2cf228SFred Isaman 		      struct pnfs_layout_segment *lseg,
1753b57ff130SWeston Andros Adamson 		      struct nfs_commit_info *cinfo,
1754b57ff130SWeston Andros Adamson 		      u32 ds_commit_idx)
175564bfeb49SFred Isaman {
175664bfeb49SFred Isaman 	struct nfs_page *req;
175764bfeb49SFred Isaman 
175864bfeb49SFred Isaman 	while (!list_empty(page_list)) {
175964bfeb49SFred Isaman 		req = nfs_list_entry(page_list->next);
176064bfeb49SFred Isaman 		nfs_list_remove_request(req);
1761b57ff130SWeston Andros Adamson 		nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
1762487b9b8aSTom Haynes 		if (!cinfo->dreq)
1763487b9b8aSTom Haynes 			nfs_clear_page_commit(req->wb_page);
17641d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
176564bfeb49SFred Isaman 	}
176664bfeb49SFred Isaman }
1767e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_retry_commit);
176864bfeb49SFred Isaman 
1769b20135d0STrond Myklebust static void
1770b20135d0STrond Myklebust nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1771b20135d0STrond Myklebust 		struct nfs_page *req)
1772b20135d0STrond Myklebust {
1773b20135d0STrond Myklebust 	__set_page_dirty_nobuffers(req->wb_page);
1774b20135d0STrond Myklebust }
1775b20135d0STrond Myklebust 
17769ace33cdSFred Isaman /*
17771da177e4SLinus Torvalds  * Commit dirty pages
17781da177e4SLinus Torvalds  */
17791da177e4SLinus Torvalds static int
1780ea2cf228SFred Isaman nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1781ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
17821da177e4SLinus Torvalds {
17830b7c0153SFred Isaman 	struct nfs_commit_data	*data;
17841da177e4SLinus Torvalds 
1785ade8febdSWeston Andros Adamson 	/* another commit raced with us */
1786ade8febdSWeston Andros Adamson 	if (list_empty(head))
1787ade8febdSWeston Andros Adamson 		return 0;
1788ade8febdSWeston Andros Adamson 
1789518662e0SNeilBrown 	data = nfs_commitdata_alloc(true);
17901da177e4SLinus Torvalds 
17911da177e4SLinus Torvalds 	/* Set up the argument struct */
1792f453a54aSFred Isaman 	nfs_init_commit(data, head, NULL, cinfo);
1793f453a54aSFred Isaman 	atomic_inc(&cinfo->mds->rpcs_out);
1794c36aae9aSPeng Tao 	return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
1795c36aae9aSPeng Tao 				   data->mds_ops, how, 0);
17961da177e4SLinus Torvalds }
17971da177e4SLinus Torvalds 
17981da177e4SLinus Torvalds /*
17991da177e4SLinus Torvalds  * COMMIT call returned
18001da177e4SLinus Torvalds  */
1801788e7a89STrond Myklebust static void nfs_commit_done(struct rpc_task *task, void *calldata)
18021da177e4SLinus Torvalds {
18030b7c0153SFred Isaman 	struct nfs_commit_data	*data = calldata;
18041da177e4SLinus Torvalds 
1805a3f565b1SChuck Lever         dprintk("NFS: %5u nfs_commit_done (status %d)\n",
18061da177e4SLinus Torvalds                                 task->tk_pid, task->tk_status);
18071da177e4SLinus Torvalds 
1808788e7a89STrond Myklebust 	/* Call the NFS version-specific code */
1809c0d0e96bSTrond Myklebust 	NFS_PROTO(data->inode)->commit_done(task, data);
1810c9d8f89dSTrond Myklebust }
1811c9d8f89dSTrond Myklebust 
1812f453a54aSFred Isaman static void nfs_commit_release_pages(struct nfs_commit_data *data)
1813c9d8f89dSTrond Myklebust {
1814c9d8f89dSTrond Myklebust 	struct nfs_page	*req;
1815c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1816f453a54aSFred Isaman 	struct nfs_commit_info cinfo;
1817353db796SNeilBrown 	struct nfs_server *nfss;
1818788e7a89STrond Myklebust 
18191da177e4SLinus Torvalds 	while (!list_empty(&data->pages)) {
18201da177e4SLinus Torvalds 		req = nfs_list_entry(data->pages.next);
18211da177e4SLinus Torvalds 		nfs_list_remove_request(req);
182267911c8fSAnna Schumaker 		if (req->wb_page)
1823d6d6dc7cSFred Isaman 			nfs_clear_page_commit(req->wb_page);
18241da177e4SLinus Torvalds 
18251e8968c5SNiels de Vos 		dprintk("NFS:       commit (%s/%llu %d@%lld)",
18263d4ff43dSAl Viro 			req->wb_context->dentry->d_sb->s_id,
18272b0143b5SDavid Howells 			(unsigned long long)NFS_FILEID(d_inode(req->wb_context->dentry)),
18281da177e4SLinus Torvalds 			req->wb_bytes,
18291da177e4SLinus Torvalds 			(long long)req_offset(req));
1830c9d8f89dSTrond Myklebust 		if (status < 0) {
1831c9d8f89dSTrond Myklebust 			nfs_context_set_write_error(req->wb_context, status);
183238a33101SKinglong Mee 			if (req->wb_page)
18331da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
1834ddeaa637SJoe Perches 			dprintk_cont(", error = %d\n", status);
18351da177e4SLinus Torvalds 			goto next;
18361da177e4SLinus Torvalds 		}
18371da177e4SLinus Torvalds 
18381da177e4SLinus Torvalds 		/* Okay, COMMIT succeeded, apparently. Check the verifier
18391da177e4SLinus Torvalds 		 * returned by the server against all stored verfs. */
18408fc3c386STrond Myklebust 		if (!nfs_write_verifier_cmp(&req->wb_verf, &data->verf.verifier)) {
18411da177e4SLinus Torvalds 			/* We have a match */
184238a33101SKinglong Mee 			if (req->wb_page)
18431da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
1844ddeaa637SJoe Perches 			dprintk_cont(" OK\n");
18451da177e4SLinus Torvalds 			goto next;
18461da177e4SLinus Torvalds 		}
18471da177e4SLinus Torvalds 		/* We have a mismatch. Write the page again */
1848ddeaa637SJoe Perches 		dprintk_cont(" mismatch\n");
18496d884e8fSFred 		nfs_mark_request_dirty(req);
185005990d1bSTrond Myklebust 		set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
18511da177e4SLinus Torvalds 	next:
18521d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
18531da177e4SLinus Torvalds 	}
1854353db796SNeilBrown 	nfss = NFS_SERVER(data->inode);
1855353db796SNeilBrown 	if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
18560db10944SJan Kara 		clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC);
1857353db796SNeilBrown 
1858f453a54aSFred Isaman 	nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1859af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
18605917ce84SFred Isaman }
18615917ce84SFred Isaman 
18625917ce84SFred Isaman static void nfs_commit_release(void *calldata)
18635917ce84SFred Isaman {
18640b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
18655917ce84SFred Isaman 
1866f453a54aSFred Isaman 	data->completion_ops->completion(data);
1867c9d8f89dSTrond Myklebust 	nfs_commitdata_release(calldata);
18681da177e4SLinus Torvalds }
1869788e7a89STrond Myklebust 
1870788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops = {
18710b7c0153SFred Isaman 	.rpc_call_prepare = nfs_commit_prepare,
1872788e7a89STrond Myklebust 	.rpc_call_done = nfs_commit_done,
1873788e7a89STrond Myklebust 	.rpc_release = nfs_commit_release,
1874788e7a89STrond Myklebust };
18751da177e4SLinus Torvalds 
1876f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1877f453a54aSFred Isaman 	.completion = nfs_commit_release_pages,
1878b20135d0STrond Myklebust 	.resched_write = nfs_commit_resched_write,
1879f453a54aSFred Isaman };
1880f453a54aSFred Isaman 
18811763da12SFred Isaman int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1882ea2cf228SFred Isaman 			    int how, struct nfs_commit_info *cinfo)
188384c53ab5SFred Isaman {
188484c53ab5SFred Isaman 	int status;
188584c53ab5SFred Isaman 
1886ea2cf228SFred Isaman 	status = pnfs_commit_list(inode, head, how, cinfo);
188784c53ab5SFred Isaman 	if (status == PNFS_NOT_ATTEMPTED)
1888ea2cf228SFred Isaman 		status = nfs_commit_list(inode, head, how, cinfo);
188984c53ab5SFred Isaman 	return status;
189084c53ab5SFred Isaman }
189184c53ab5SFred Isaman 
1892b608b283STrond Myklebust int nfs_commit_inode(struct inode *inode, int how)
18931da177e4SLinus Torvalds {
18941da177e4SLinus Torvalds 	LIST_HEAD(head);
1895ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
189671d0a611STrond Myklebust 	int may_wait = how & FLUSH_SYNC;
1897af7cf057STrond Myklebust 	int error = 0;
1898b8413f98STrond Myklebust 	int res;
18991da177e4SLinus Torvalds 
1900ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, inode);
1901af7cf057STrond Myklebust 	nfs_commit_begin(cinfo.mds);
1902ea2cf228SFred Isaman 	res = nfs_scan_commit(inode, &head, &cinfo);
1903af7cf057STrond Myklebust 	if (res)
1904ea2cf228SFred Isaman 		error = nfs_generic_commit_list(inode, &head, how, &cinfo);
1905af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
19061da177e4SLinus Torvalds 	if (error < 0)
1907af7cf057STrond Myklebust 		goto out_error;
1908b8413f98STrond Myklebust 	if (!may_wait)
1909b8413f98STrond Myklebust 		goto out_mark_dirty;
1910af7cf057STrond Myklebust 	error = wait_on_commit(cinfo.mds);
1911b8413f98STrond Myklebust 	if (error < 0)
1912b8413f98STrond Myklebust 		return error;
1913c5efa5fcSTrond Myklebust 	return res;
1914af7cf057STrond Myklebust out_error:
1915af7cf057STrond Myklebust 	res = error;
1916c5efa5fcSTrond Myklebust 	/* Note: If we exit without ensuring that the commit is complete,
1917c5efa5fcSTrond Myklebust 	 * we must mark the inode as dirty. Otherwise, future calls to
1918c5efa5fcSTrond Myklebust 	 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1919c5efa5fcSTrond Myklebust 	 * that the data is on the disk.
1920c5efa5fcSTrond Myklebust 	 */
1921c5efa5fcSTrond Myklebust out_mark_dirty:
1922c5efa5fcSTrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
19231da177e4SLinus Torvalds 	return res;
19241da177e4SLinus Torvalds }
1925b20135d0STrond Myklebust EXPORT_SYMBOL_GPL(nfs_commit_inode);
19268fc795f7STrond Myklebust 
1927ae09c31fSAnna Schumaker int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
19288fc795f7STrond Myklebust {
1929420e3646STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
1930420e3646STrond Myklebust 	int flags = FLUSH_SYNC;
1931420e3646STrond Myklebust 	int ret = 0;
19328fc795f7STrond Myklebust 
19333236c3e1SJeff Layton 	/* no commits means nothing needs to be done */
1934ea2cf228SFred Isaman 	if (!nfsi->commit_info.ncommit)
19353236c3e1SJeff Layton 		return ret;
19363236c3e1SJeff Layton 
1937a00dd6c0SJeff Layton 	if (wbc->sync_mode == WB_SYNC_NONE) {
1938a00dd6c0SJeff Layton 		/* Don't commit yet if this is a non-blocking flush and there
1939a00dd6c0SJeff Layton 		 * are a lot of outstanding writes for this mapping.
1940420e3646STrond Myklebust 		 */
19411a4edf0fSTrond Myklebust 		if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1942420e3646STrond Myklebust 			goto out_mark_dirty;
1943420e3646STrond Myklebust 
1944a00dd6c0SJeff Layton 		/* don't wait for the COMMIT response */
1945420e3646STrond Myklebust 		flags = 0;
1946a00dd6c0SJeff Layton 	}
1947a00dd6c0SJeff Layton 
1948420e3646STrond Myklebust 	ret = nfs_commit_inode(inode, flags);
1949420e3646STrond Myklebust 	if (ret >= 0) {
1950420e3646STrond Myklebust 		if (wbc->sync_mode == WB_SYNC_NONE) {
1951420e3646STrond Myklebust 			if (ret < wbc->nr_to_write)
1952420e3646STrond Myklebust 				wbc->nr_to_write -= ret;
1953420e3646STrond Myklebust 			else
1954420e3646STrond Myklebust 				wbc->nr_to_write = 0;
1955420e3646STrond Myklebust 		}
19568fc795f7STrond Myklebust 		return 0;
1957420e3646STrond Myklebust 	}
1958420e3646STrond Myklebust out_mark_dirty:
19598fc795f7STrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
19608fc795f7STrond Myklebust 	return ret;
19618fc795f7STrond Myklebust }
196289d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_write_inode);
1963863a3c6cSAndy Adamson 
1964acdc53b2STrond Myklebust /*
1965837bb1d7STrond Myklebust  * Wrapper for filemap_write_and_wait_range()
1966837bb1d7STrond Myklebust  *
1967837bb1d7STrond Myklebust  * Needed for pNFS in order to ensure data becomes visible to the
1968837bb1d7STrond Myklebust  * client.
1969837bb1d7STrond Myklebust  */
1970837bb1d7STrond Myklebust int nfs_filemap_write_and_wait_range(struct address_space *mapping,
1971837bb1d7STrond Myklebust 		loff_t lstart, loff_t lend)
1972837bb1d7STrond Myklebust {
1973837bb1d7STrond Myklebust 	int ret;
1974837bb1d7STrond Myklebust 
1975837bb1d7STrond Myklebust 	ret = filemap_write_and_wait_range(mapping, lstart, lend);
1976837bb1d7STrond Myklebust 	if (ret == 0)
1977837bb1d7STrond Myklebust 		ret = pnfs_sync_inode(mapping->host, true);
1978837bb1d7STrond Myklebust 	return ret;
1979837bb1d7STrond Myklebust }
1980837bb1d7STrond Myklebust EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
1981837bb1d7STrond Myklebust 
1982837bb1d7STrond Myklebust /*
1983acdc53b2STrond Myklebust  * flush the inode to disk.
1984acdc53b2STrond Myklebust  */
1985acdc53b2STrond Myklebust int nfs_wb_all(struct inode *inode)
198634901f70STrond Myklebust {
1987f4ce1299STrond Myklebust 	int ret;
198834901f70STrond Myklebust 
1989f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_enter(inode);
1990f4ce1299STrond Myklebust 
19915bb89b47STrond Myklebust 	ret = filemap_write_and_wait(inode->i_mapping);
19926b196875SChuck Lever 	if (ret)
19936b196875SChuck Lever 		goto out;
19945bb89b47STrond Myklebust 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
19956b196875SChuck Lever 	if (ret < 0)
19966b196875SChuck Lever 		goto out;
19975bb89b47STrond Myklebust 	pnfs_sync_inode(inode, true);
19986b196875SChuck Lever 	ret = 0;
1999f4ce1299STrond Myklebust 
20006b196875SChuck Lever out:
2001f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_exit(inode, ret);
2002f4ce1299STrond Myklebust 	return ret;
20031c75950bSTrond Myklebust }
2004ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_wb_all);
20051c75950bSTrond Myklebust 
20061b3b4a1aSTrond Myklebust int nfs_wb_page_cancel(struct inode *inode, struct page *page)
20071b3b4a1aSTrond Myklebust {
20081b3b4a1aSTrond Myklebust 	struct nfs_page *req;
20091b3b4a1aSTrond Myklebust 	int ret = 0;
20101b3b4a1aSTrond Myklebust 
2011ba8b06e6STrond Myklebust 	wait_on_page_writeback(page);
20123e217045SWeston Andros Adamson 
20133e217045SWeston Andros Adamson 	/* blocking call to cancel all requests and join to a single (head)
20143e217045SWeston Andros Adamson 	 * request */
20156d17d653STrond Myklebust 	req = nfs_lock_and_join_requests(page);
20163e217045SWeston Andros Adamson 
20173e217045SWeston Andros Adamson 	if (IS_ERR(req)) {
20183e217045SWeston Andros Adamson 		ret = PTR_ERR(req);
20193e217045SWeston Andros Adamson 	} else if (req) {
20203e217045SWeston Andros Adamson 		/* all requests from this page have been cancelled by
20213e217045SWeston Andros Adamson 		 * nfs_lock_and_join_requests, so just remove the head
20223e217045SWeston Andros Adamson 		 * request from the inode / page_private pointer and
20233e217045SWeston Andros Adamson 		 * release it */
20241b3b4a1aSTrond Myklebust 		nfs_inode_remove_request(req);
20251d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
20261b3b4a1aSTrond Myklebust 	}
20273e217045SWeston Andros Adamson 
20281b3b4a1aSTrond Myklebust 	return ret;
20291b3b4a1aSTrond Myklebust }
20301b3b4a1aSTrond Myklebust 
20311c75950bSTrond Myklebust /*
20321c75950bSTrond Myklebust  * Write back all requests on one page - we do this before reading it.
20331c75950bSTrond Myklebust  */
2034c373fff7STrond Myklebust int nfs_wb_page(struct inode *inode, struct page *page)
20351c75950bSTrond Myklebust {
203629418aa4SMel Gorman 	loff_t range_start = page_file_offset(page);
203709cbfeafSKirill A. Shutemov 	loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
20387f2f12d9STrond Myklebust 	struct writeback_control wbc = {
20397f2f12d9STrond Myklebust 		.sync_mode = WB_SYNC_ALL,
20407f2f12d9STrond Myklebust 		.nr_to_write = 0,
20417f2f12d9STrond Myklebust 		.range_start = range_start,
20427f2f12d9STrond Myklebust 		.range_end = range_end,
20437f2f12d9STrond Myklebust 	};
20447f2f12d9STrond Myklebust 	int ret;
20457f2f12d9STrond Myklebust 
2046f4ce1299STrond Myklebust 	trace_nfs_writeback_page_enter(inode);
2047f4ce1299STrond Myklebust 
20480522f6adSTrond Myklebust 	for (;;) {
2049ba8b06e6STrond Myklebust 		wait_on_page_writeback(page);
20507f2f12d9STrond Myklebust 		if (clear_page_dirty_for_io(page)) {
2051c373fff7STrond Myklebust 			ret = nfs_writepage_locked(page, &wbc);
20527f2f12d9STrond Myklebust 			if (ret < 0)
20537f2f12d9STrond Myklebust 				goto out_error;
20540522f6adSTrond Myklebust 			continue;
20557f2f12d9STrond Myklebust 		}
2056f4ce1299STrond Myklebust 		ret = 0;
20570522f6adSTrond Myklebust 		if (!PagePrivate(page))
20580522f6adSTrond Myklebust 			break;
20590522f6adSTrond Myklebust 		ret = nfs_commit_inode(inode, FLUSH_SYNC);
20607f2f12d9STrond Myklebust 		if (ret < 0)
20617f2f12d9STrond Myklebust 			goto out_error;
20627f2f12d9STrond Myklebust 	}
20637f2f12d9STrond Myklebust out_error:
2064f4ce1299STrond Myklebust 	trace_nfs_writeback_page_exit(inode, ret);
20657f2f12d9STrond Myklebust 	return ret;
20661c75950bSTrond Myklebust }
20671c75950bSTrond Myklebust 
2068074cc1deSTrond Myklebust #ifdef CONFIG_MIGRATION
2069074cc1deSTrond Myklebust int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
2070a6bc32b8SMel Gorman 		struct page *page, enum migrate_mode mode)
2071074cc1deSTrond Myklebust {
20722da95652SJeff Layton 	/*
20732da95652SJeff Layton 	 * If PagePrivate is set, then the page is currently associated with
20742da95652SJeff Layton 	 * an in-progress read or write request. Don't try to migrate it.
20752da95652SJeff Layton 	 *
20762da95652SJeff Layton 	 * FIXME: we could do this in principle, but we'll need a way to ensure
20772da95652SJeff Layton 	 *        that we can safely release the inode reference while holding
20782da95652SJeff Layton 	 *        the page lock.
20792da95652SJeff Layton 	 */
20802da95652SJeff Layton 	if (PagePrivate(page))
20812da95652SJeff Layton 		return -EBUSY;
2082074cc1deSTrond Myklebust 
20838c209ce7SDavid Howells 	if (!nfs_fscache_release_page(page, GFP_KERNEL))
20848c209ce7SDavid Howells 		return -EBUSY;
2085074cc1deSTrond Myklebust 
2086a6bc32b8SMel Gorman 	return migrate_page(mapping, newpage, page, mode);
2087074cc1deSTrond Myklebust }
2088074cc1deSTrond Myklebust #endif
2089074cc1deSTrond Myklebust 
2090f7b422b1SDavid Howells int __init nfs_init_writepagecache(void)
20911da177e4SLinus Torvalds {
20921da177e4SLinus Torvalds 	nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
20931e7f3a48SWeston Andros Adamson 					     sizeof(struct nfs_pgio_header),
20941da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
209520c2df83SPaul Mundt 					     NULL);
20961da177e4SLinus Torvalds 	if (nfs_wdata_cachep == NULL)
20971da177e4SLinus Torvalds 		return -ENOMEM;
20981da177e4SLinus Torvalds 
209993d2341cSMatthew Dobson 	nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
21001da177e4SLinus Torvalds 						     nfs_wdata_cachep);
21011da177e4SLinus Torvalds 	if (nfs_wdata_mempool == NULL)
21023dd4765fSJeff Layton 		goto out_destroy_write_cache;
21031da177e4SLinus Torvalds 
21040b7c0153SFred Isaman 	nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
21050b7c0153SFred Isaman 					     sizeof(struct nfs_commit_data),
21060b7c0153SFred Isaman 					     0, SLAB_HWCACHE_ALIGN,
21070b7c0153SFred Isaman 					     NULL);
21080b7c0153SFred Isaman 	if (nfs_cdata_cachep == NULL)
21093dd4765fSJeff Layton 		goto out_destroy_write_mempool;
21100b7c0153SFred Isaman 
211193d2341cSMatthew Dobson 	nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
21124c100210SYanchuan Nian 						      nfs_cdata_cachep);
21131da177e4SLinus Torvalds 	if (nfs_commit_mempool == NULL)
21143dd4765fSJeff Layton 		goto out_destroy_commit_cache;
21151da177e4SLinus Torvalds 
211689a09141SPeter Zijlstra 	/*
211789a09141SPeter Zijlstra 	 * NFS congestion size, scale with available memory.
211889a09141SPeter Zijlstra 	 *
211989a09141SPeter Zijlstra 	 *  64MB:    8192k
212089a09141SPeter Zijlstra 	 * 128MB:   11585k
212189a09141SPeter Zijlstra 	 * 256MB:   16384k
212289a09141SPeter Zijlstra 	 * 512MB:   23170k
212389a09141SPeter Zijlstra 	 *   1GB:   32768k
212489a09141SPeter Zijlstra 	 *   2GB:   46340k
212589a09141SPeter Zijlstra 	 *   4GB:   65536k
212689a09141SPeter Zijlstra 	 *   8GB:   92681k
212789a09141SPeter Zijlstra 	 *  16GB:  131072k
212889a09141SPeter Zijlstra 	 *
212989a09141SPeter Zijlstra 	 * This allows larger machines to have larger/more transfers.
213089a09141SPeter Zijlstra 	 * Limit the default to 256M
213189a09141SPeter Zijlstra 	 */
213289a09141SPeter Zijlstra 	nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
213389a09141SPeter Zijlstra 	if (nfs_congestion_kb > 256*1024)
213489a09141SPeter Zijlstra 		nfs_congestion_kb = 256*1024;
213589a09141SPeter Zijlstra 
21361da177e4SLinus Torvalds 	return 0;
21373dd4765fSJeff Layton 
21383dd4765fSJeff Layton out_destroy_commit_cache:
21393dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
21403dd4765fSJeff Layton out_destroy_write_mempool:
21413dd4765fSJeff Layton 	mempool_destroy(nfs_wdata_mempool);
21423dd4765fSJeff Layton out_destroy_write_cache:
21433dd4765fSJeff Layton 	kmem_cache_destroy(nfs_wdata_cachep);
21443dd4765fSJeff Layton 	return -ENOMEM;
21451da177e4SLinus Torvalds }
21461da177e4SLinus Torvalds 
2147266bee88SDavid Brownell void nfs_destroy_writepagecache(void)
21481da177e4SLinus Torvalds {
21491da177e4SLinus Torvalds 	mempool_destroy(nfs_commit_mempool);
21503dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
21511da177e4SLinus Torvalds 	mempool_destroy(nfs_wdata_mempool);
21521a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_wdata_cachep);
21531da177e4SLinus Torvalds }
21541da177e4SLinus Torvalds 
21554a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops = {
21564a0de55cSAnna Schumaker 	.rw_alloc_header	= nfs_writehdr_alloc,
21574a0de55cSAnna Schumaker 	.rw_free_header		= nfs_writehdr_free,
21580eecb214SAnna Schumaker 	.rw_done		= nfs_writeback_done,
21590eecb214SAnna Schumaker 	.rw_result		= nfs_writeback_result,
21601ed26f33SAnna Schumaker 	.rw_initiate		= nfs_initiate_write,
21614a0de55cSAnna Schumaker };
2162