xref: /linux/fs/nfs/write.c (revision 457c89965399115e5cd8bf38f9c597293405703d)
1*457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  * linux/fs/nfs/write.c
41da177e4SLinus Torvalds  *
57c85d900STrond Myklebust  * Write file data over NFS.
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de>
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
101da177e4SLinus Torvalds #include <linux/types.h>
111da177e4SLinus Torvalds #include <linux/slab.h>
121da177e4SLinus Torvalds #include <linux/mm.h>
131da177e4SLinus Torvalds #include <linux/pagemap.h>
141da177e4SLinus Torvalds #include <linux/file.h>
151da177e4SLinus Torvalds #include <linux/writeback.h>
1689a09141SPeter Zijlstra #include <linux/swap.h>
17074cc1deSTrond Myklebust #include <linux/migrate.h>
181da177e4SLinus Torvalds 
191da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h>
201da177e4SLinus Torvalds #include <linux/nfs_fs.h>
211da177e4SLinus Torvalds #include <linux/nfs_mount.h>
221da177e4SLinus Torvalds #include <linux/nfs_page.h>
233fcfab16SAndrew Morton #include <linux/backing-dev.h>
24afeacc8cSPaul Gortmaker #include <linux/export.h>
25af7cf057STrond Myklebust #include <linux/freezer.h>
26af7cf057STrond Myklebust #include <linux/wait.h>
271eb5d98fSJeff Layton #include <linux/iversion.h>
283fcfab16SAndrew Morton 
297c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
30875bc3fbSTrond Myklebust #include <linux/sched/mm.h>
311da177e4SLinus Torvalds 
321da177e4SLinus Torvalds #include "delegation.h"
3349a70f27STrond Myklebust #include "internal.h"
3491d5b470SChuck Lever #include "iostat.h"
35def6ed7eSAndy Adamson #include "nfs4_fs.h"
36074cc1deSTrond Myklebust #include "fscache.h"
3794ad1c80SFred Isaman #include "pnfs.h"
381da177e4SLinus Torvalds 
39f4ce1299STrond Myklebust #include "nfstrace.h"
40f4ce1299STrond Myklebust 
411da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
421da177e4SLinus Torvalds 
431da177e4SLinus Torvalds #define MIN_POOL_WRITE		(32)
441da177e4SLinus Torvalds #define MIN_POOL_COMMIT		(4)
451da177e4SLinus Torvalds 
46919e3bd9STrond Myklebust struct nfs_io_completion {
47919e3bd9STrond Myklebust 	void (*complete)(void *data);
48919e3bd9STrond Myklebust 	void *data;
49919e3bd9STrond Myklebust 	struct kref refcount;
50919e3bd9STrond Myklebust };
51919e3bd9STrond Myklebust 
521da177e4SLinus Torvalds /*
531da177e4SLinus Torvalds  * Local function declarations
541da177e4SLinus Torvalds  */
55f8512ad0SFred Isaman static void nfs_redirty_request(struct nfs_page *req);
56788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops;
57061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
58f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
594a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops;
60d4581383SWeston Andros Adamson static void nfs_clear_request_commit(struct nfs_page *req);
6102d1426cSWeston Andros Adamson static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
6202d1426cSWeston Andros Adamson 				      struct inode *inode);
633a3908c8STrond Myklebust static struct nfs_page *
643a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
653a3908c8STrond Myklebust 						struct page *page);
661da177e4SLinus Torvalds 
67e18b890bSChristoph Lameter static struct kmem_cache *nfs_wdata_cachep;
683feb2d49STrond Myklebust static mempool_t *nfs_wdata_mempool;
690b7c0153SFred Isaman static struct kmem_cache *nfs_cdata_cachep;
701da177e4SLinus Torvalds static mempool_t *nfs_commit_mempool;
711da177e4SLinus Torvalds 
72518662e0SNeilBrown struct nfs_commit_data *nfs_commitdata_alloc(bool never_fail)
731da177e4SLinus Torvalds {
74518662e0SNeilBrown 	struct nfs_commit_data *p;
7540859d7eSChuck Lever 
76518662e0SNeilBrown 	if (never_fail)
77518662e0SNeilBrown 		p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
78518662e0SNeilBrown 	else {
79518662e0SNeilBrown 		/* It is OK to do some reclaim, not no safe to wait
80518662e0SNeilBrown 		 * for anything to be returned to the pool.
81518662e0SNeilBrown 		 * mempool_alloc() cannot handle that particular combination,
82518662e0SNeilBrown 		 * so we need two separate attempts.
83518662e0SNeilBrown 		 */
84518662e0SNeilBrown 		p = mempool_alloc(nfs_commit_mempool, GFP_NOWAIT);
85518662e0SNeilBrown 		if (!p)
86518662e0SNeilBrown 			p = kmem_cache_alloc(nfs_cdata_cachep, GFP_NOIO |
87518662e0SNeilBrown 					     __GFP_NOWARN | __GFP_NORETRY);
88518662e0SNeilBrown 		if (!p)
89518662e0SNeilBrown 			return NULL;
90518662e0SNeilBrown 	}
91518662e0SNeilBrown 
921da177e4SLinus Torvalds 	memset(p, 0, sizeof(*p));
931da177e4SLinus Torvalds 	INIT_LIST_HEAD(&p->pages);
941da177e4SLinus Torvalds 	return p;
951da177e4SLinus Torvalds }
96e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
971da177e4SLinus Torvalds 
980b7c0153SFred Isaman void nfs_commit_free(struct nfs_commit_data *p)
991da177e4SLinus Torvalds {
1001da177e4SLinus Torvalds 	mempool_free(p, nfs_commit_mempool);
1011da177e4SLinus Torvalds }
102e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_free);
1031da177e4SLinus Torvalds 
1041e7f3a48SWeston Andros Adamson static struct nfs_pgio_header *nfs_writehdr_alloc(void)
1053feb2d49STrond Myklebust {
1061e7f3a48SWeston Andros Adamson 	struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
1073feb2d49STrond Myklebust 
1083feb2d49STrond Myklebust 	memset(p, 0, sizeof(*p));
109fbe77c30SBenjamin Coddington 	p->rw_mode = FMODE_WRITE;
1103feb2d49STrond Myklebust 	return p;
1113feb2d49STrond Myklebust }
1123feb2d49STrond Myklebust 
1131e7f3a48SWeston Andros Adamson static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
1146c75dc0dSFred Isaman {
1151e7f3a48SWeston Andros Adamson 	mempool_free(hdr, nfs_wdata_mempool);
1163feb2d49STrond Myklebust }
1171da177e4SLinus Torvalds 
118919e3bd9STrond Myklebust static struct nfs_io_completion *nfs_io_completion_alloc(gfp_t gfp_flags)
119919e3bd9STrond Myklebust {
120919e3bd9STrond Myklebust 	return kmalloc(sizeof(struct nfs_io_completion), gfp_flags);
121919e3bd9STrond Myklebust }
122919e3bd9STrond Myklebust 
123919e3bd9STrond Myklebust static void nfs_io_completion_init(struct nfs_io_completion *ioc,
124919e3bd9STrond Myklebust 		void (*complete)(void *), void *data)
125919e3bd9STrond Myklebust {
126919e3bd9STrond Myklebust 	ioc->complete = complete;
127919e3bd9STrond Myklebust 	ioc->data = data;
128919e3bd9STrond Myklebust 	kref_init(&ioc->refcount);
129919e3bd9STrond Myklebust }
130919e3bd9STrond Myklebust 
131919e3bd9STrond Myklebust static void nfs_io_completion_release(struct kref *kref)
132919e3bd9STrond Myklebust {
133919e3bd9STrond Myklebust 	struct nfs_io_completion *ioc = container_of(kref,
134919e3bd9STrond Myklebust 			struct nfs_io_completion, refcount);
135919e3bd9STrond Myklebust 	ioc->complete(ioc->data);
136919e3bd9STrond Myklebust 	kfree(ioc);
137919e3bd9STrond Myklebust }
138919e3bd9STrond Myklebust 
139919e3bd9STrond Myklebust static void nfs_io_completion_get(struct nfs_io_completion *ioc)
140919e3bd9STrond Myklebust {
141919e3bd9STrond Myklebust 	if (ioc != NULL)
142919e3bd9STrond Myklebust 		kref_get(&ioc->refcount);
143919e3bd9STrond Myklebust }
144919e3bd9STrond Myklebust 
145919e3bd9STrond Myklebust static void nfs_io_completion_put(struct nfs_io_completion *ioc)
146919e3bd9STrond Myklebust {
147919e3bd9STrond Myklebust 	if (ioc != NULL)
148919e3bd9STrond Myklebust 		kref_put(&ioc->refcount, nfs_io_completion_release);
149919e3bd9STrond Myklebust }
150919e3bd9STrond Myklebust 
151bd37d6fcSTrond Myklebust static struct nfs_page *
152bd37d6fcSTrond Myklebust nfs_page_private_request(struct page *page)
153bd37d6fcSTrond Myklebust {
154bd37d6fcSTrond Myklebust 	if (!PagePrivate(page))
155bd37d6fcSTrond Myklebust 		return NULL;
156bd37d6fcSTrond Myklebust 	return (struct nfs_page *)page_private(page);
157bd37d6fcSTrond Myklebust }
158bd37d6fcSTrond Myklebust 
15984d3a9a9SWeston Andros Adamson /*
16084d3a9a9SWeston Andros Adamson  * nfs_page_find_head_request_locked - find head request associated with @page
16184d3a9a9SWeston Andros Adamson  *
16284d3a9a9SWeston Andros Adamson  * must be called while holding the inode lock.
16384d3a9a9SWeston Andros Adamson  *
16484d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
16584d3a9a9SWeston Andros Adamson  */
16629418aa4SMel Gorman static struct nfs_page *
167b30d2f04STrond Myklebust nfs_page_find_private_request(struct page *page)
168277459d2STrond Myklebust {
1694b9bb25bSTrond Myklebust 	struct address_space *mapping = page_file_mapping(page);
170bd37d6fcSTrond Myklebust 	struct nfs_page *req;
171277459d2STrond Myklebust 
172b30d2f04STrond Myklebust 	if (!PagePrivate(page))
173b30d2f04STrond Myklebust 		return NULL;
1744b9bb25bSTrond Myklebust 	spin_lock(&mapping->private_lock);
175bd37d6fcSTrond Myklebust 	req = nfs_page_private_request(page);
17684d3a9a9SWeston Andros Adamson 	if (req) {
17784d3a9a9SWeston Andros Adamson 		WARN_ON_ONCE(req->wb_head != req);
17829418aa4SMel Gorman 		kref_get(&req->wb_kref);
17984d3a9a9SWeston Andros Adamson 	}
1804b9bb25bSTrond Myklebust 	spin_unlock(&mapping->private_lock);
181b30d2f04STrond Myklebust 	return req;
182b30d2f04STrond Myklebust }
18329418aa4SMel Gorman 
184b30d2f04STrond Myklebust static struct nfs_page *
185b30d2f04STrond Myklebust nfs_page_find_swap_request(struct page *page)
186b30d2f04STrond Myklebust {
187b30d2f04STrond Myklebust 	struct inode *inode = page_file_mapping(page)->host;
188b30d2f04STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
189b30d2f04STrond Myklebust 	struct nfs_page *req = NULL;
190b30d2f04STrond Myklebust 	if (!PageSwapCache(page))
191b30d2f04STrond Myklebust 		return NULL;
192e824f99aSTrond Myklebust 	mutex_lock(&nfsi->commit_mutex);
193b30d2f04STrond Myklebust 	if (PageSwapCache(page)) {
194b30d2f04STrond Myklebust 		req = nfs_page_search_commits_for_head_request_locked(nfsi,
195b30d2f04STrond Myklebust 			page);
196b30d2f04STrond Myklebust 		if (req) {
197b30d2f04STrond Myklebust 			WARN_ON_ONCE(req->wb_head != req);
198b30d2f04STrond Myklebust 			kref_get(&req->wb_kref);
199b30d2f04STrond Myklebust 		}
200b30d2f04STrond Myklebust 	}
201e824f99aSTrond Myklebust 	mutex_unlock(&nfsi->commit_mutex);
202277459d2STrond Myklebust 	return req;
203277459d2STrond Myklebust }
204277459d2STrond Myklebust 
20584d3a9a9SWeston Andros Adamson /*
20684d3a9a9SWeston Andros Adamson  * nfs_page_find_head_request - find head request associated with @page
20784d3a9a9SWeston Andros Adamson  *
20884d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
20984d3a9a9SWeston Andros Adamson  */
21084d3a9a9SWeston Andros Adamson static struct nfs_page *nfs_page_find_head_request(struct page *page)
211277459d2STrond Myklebust {
212b30d2f04STrond Myklebust 	struct nfs_page *req;
213277459d2STrond Myklebust 
214b30d2f04STrond Myklebust 	req = nfs_page_find_private_request(page);
215b30d2f04STrond Myklebust 	if (!req)
216b30d2f04STrond Myklebust 		req = nfs_page_find_swap_request(page);
217277459d2STrond Myklebust 	return req;
218277459d2STrond Myklebust }
219277459d2STrond Myklebust 
2201da177e4SLinus Torvalds /* Adjust the file length if we're writing beyond the end */
2211da177e4SLinus Torvalds static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
2221da177e4SLinus Torvalds {
223d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
224a3d01454STrond Myklebust 	loff_t end, i_size;
225a3d01454STrond Myklebust 	pgoff_t end_index;
2261da177e4SLinus Torvalds 
227a3d01454STrond Myklebust 	spin_lock(&inode->i_lock);
228a3d01454STrond Myklebust 	i_size = i_size_read(inode);
22909cbfeafSKirill A. Shutemov 	end_index = (i_size - 1) >> PAGE_SHIFT;
2308cd79788SHuang Ying 	if (i_size > 0 && page_index(page) < end_index)
231a3d01454STrond Myklebust 		goto out;
232d56b4ddfSMel Gorman 	end = page_file_offset(page) + ((loff_t)offset+count);
2331da177e4SLinus Torvalds 	if (i_size >= end)
234a3d01454STrond Myklebust 		goto out;
2351da177e4SLinus Torvalds 	i_size_write(inode, end);
236f6cdfa6dSTrond Myklebust 	NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_SIZE;
237a3d01454STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
238a3d01454STrond Myklebust out:
239a3d01454STrond Myklebust 	spin_unlock(&inode->i_lock);
2401da177e4SLinus Torvalds }
2411da177e4SLinus Torvalds 
242a301b777STrond Myklebust /* A writeback failed: mark the page as bad, and invalidate the page cache */
243d2ceb7e5SBenjamin Coddington static void nfs_set_pageerror(struct address_space *mapping)
244a301b777STrond Myklebust {
245d2ceb7e5SBenjamin Coddington 	nfs_zap_mapping(mapping->host, mapping);
246a301b777STrond Myklebust }
247a301b777STrond Myklebust 
2486fbda89bSTrond Myklebust static void nfs_mapping_set_error(struct page *page, int error)
2496fbda89bSTrond Myklebust {
2506fbda89bSTrond Myklebust 	SetPageError(page);
2516fbda89bSTrond Myklebust 	mapping_set_error(page_file_mapping(page), error);
2526fbda89bSTrond Myklebust }
2536fbda89bSTrond Myklebust 
254d72ddcbaSWeston Andros Adamson /*
255d72ddcbaSWeston Andros Adamson  * nfs_page_group_search_locked
256d72ddcbaSWeston Andros Adamson  * @head - head request of page group
257d72ddcbaSWeston Andros Adamson  * @page_offset - offset into page
258d72ddcbaSWeston Andros Adamson  *
259d72ddcbaSWeston Andros Adamson  * Search page group with head @head to find a request that contains the
260d72ddcbaSWeston Andros Adamson  * page offset @page_offset.
261d72ddcbaSWeston Andros Adamson  *
262d72ddcbaSWeston Andros Adamson  * Returns a pointer to the first matching nfs request, or NULL if no
263d72ddcbaSWeston Andros Adamson  * match is found.
264d72ddcbaSWeston Andros Adamson  *
265d72ddcbaSWeston Andros Adamson  * Must be called with the page group lock held
266d72ddcbaSWeston Andros Adamson  */
267d72ddcbaSWeston Andros Adamson static struct nfs_page *
268d72ddcbaSWeston Andros Adamson nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
269d72ddcbaSWeston Andros Adamson {
270d72ddcbaSWeston Andros Adamson 	struct nfs_page *req;
271d72ddcbaSWeston Andros Adamson 
272d72ddcbaSWeston Andros Adamson 	req = head;
273d72ddcbaSWeston Andros Adamson 	do {
274d72ddcbaSWeston Andros Adamson 		if (page_offset >= req->wb_pgbase &&
275d72ddcbaSWeston Andros Adamson 		    page_offset < (req->wb_pgbase + req->wb_bytes))
276d72ddcbaSWeston Andros Adamson 			return req;
277d72ddcbaSWeston Andros Adamson 
278d72ddcbaSWeston Andros Adamson 		req = req->wb_this_page;
279d72ddcbaSWeston Andros Adamson 	} while (req != head);
280d72ddcbaSWeston Andros Adamson 
281d72ddcbaSWeston Andros Adamson 	return NULL;
282d72ddcbaSWeston Andros Adamson }
283d72ddcbaSWeston Andros Adamson 
284d72ddcbaSWeston Andros Adamson /*
285d72ddcbaSWeston Andros Adamson  * nfs_page_group_covers_page
286d72ddcbaSWeston Andros Adamson  * @head - head request of page group
287d72ddcbaSWeston Andros Adamson  *
288d72ddcbaSWeston Andros Adamson  * Return true if the page group with head @head covers the whole page,
289d72ddcbaSWeston Andros Adamson  * returns false otherwise
290d72ddcbaSWeston Andros Adamson  */
291d72ddcbaSWeston Andros Adamson static bool nfs_page_group_covers_page(struct nfs_page *req)
292d72ddcbaSWeston Andros Adamson {
293d72ddcbaSWeston Andros Adamson 	struct nfs_page *tmp;
294d72ddcbaSWeston Andros Adamson 	unsigned int pos = 0;
295d72ddcbaSWeston Andros Adamson 	unsigned int len = nfs_page_length(req->wb_page);
296d72ddcbaSWeston Andros Adamson 
2971344b7eaSTrond Myklebust 	nfs_page_group_lock(req);
298d72ddcbaSWeston Andros Adamson 
2997e8a30f8STrond Myklebust 	for (;;) {
300d72ddcbaSWeston Andros Adamson 		tmp = nfs_page_group_search_locked(req->wb_head, pos);
3017e8a30f8STrond Myklebust 		if (!tmp)
3027e8a30f8STrond Myklebust 			break;
3037e8a30f8STrond Myklebust 		pos = tmp->wb_pgbase + tmp->wb_bytes;
304d72ddcbaSWeston Andros Adamson 	}
305d72ddcbaSWeston Andros Adamson 
306d72ddcbaSWeston Andros Adamson 	nfs_page_group_unlock(req);
3077e8a30f8STrond Myklebust 	return pos >= len;
308d72ddcbaSWeston Andros Adamson }
309d72ddcbaSWeston Andros Adamson 
3101da177e4SLinus Torvalds /* We can set the PG_uptodate flag if we see that a write request
3111da177e4SLinus Torvalds  * covers the full page.
3121da177e4SLinus Torvalds  */
313d72ddcbaSWeston Andros Adamson static void nfs_mark_uptodate(struct nfs_page *req)
3141da177e4SLinus Torvalds {
315d72ddcbaSWeston Andros Adamson 	if (PageUptodate(req->wb_page))
3161da177e4SLinus Torvalds 		return;
317d72ddcbaSWeston Andros Adamson 	if (!nfs_page_group_covers_page(req))
3181da177e4SLinus Torvalds 		return;
319d72ddcbaSWeston Andros Adamson 	SetPageUptodate(req->wb_page);
3201da177e4SLinus Torvalds }
3211da177e4SLinus Torvalds 
3221da177e4SLinus Torvalds static int wb_priority(struct writeback_control *wbc)
3231da177e4SLinus Torvalds {
324e87b4c7aSNeilBrown 	int ret = 0;
325cca588d6STrond Myklebust 
326e87b4c7aSNeilBrown 	if (wbc->sync_mode == WB_SYNC_ALL)
327e87b4c7aSNeilBrown 		ret = FLUSH_COND_STABLE;
328e87b4c7aSNeilBrown 	return ret;
3291da177e4SLinus Torvalds }
3301da177e4SLinus Torvalds 
3311da177e4SLinus Torvalds /*
33289a09141SPeter Zijlstra  * NFS congestion control
33389a09141SPeter Zijlstra  */
33489a09141SPeter Zijlstra 
33589a09141SPeter Zijlstra int nfs_congestion_kb;
33689a09141SPeter Zijlstra 
33789a09141SPeter Zijlstra #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10))
33889a09141SPeter Zijlstra #define NFS_CONGESTION_OFF_THRESH	\
33989a09141SPeter Zijlstra 	(NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
34089a09141SPeter Zijlstra 
341deed85e7STrond Myklebust static void nfs_set_page_writeback(struct page *page)
34289a09141SPeter Zijlstra {
3430db10944SJan Kara 	struct inode *inode = page_file_mapping(page)->host;
3440db10944SJan Kara 	struct nfs_server *nfss = NFS_SERVER(inode);
3455a6d41b3STrond Myklebust 	int ret = test_set_page_writeback(page);
3465a6d41b3STrond Myklebust 
347deed85e7STrond Myklebust 	WARN_ON_ONCE(ret != 0);
34889a09141SPeter Zijlstra 
349277866a0SPeter Zijlstra 	if (atomic_long_inc_return(&nfss->writeback) >
3500db10944SJan Kara 			NFS_CONGESTION_ON_THRESH)
3510db10944SJan Kara 		set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
35289a09141SPeter Zijlstra }
35389a09141SPeter Zijlstra 
35420633f04SWeston Andros Adamson static void nfs_end_page_writeback(struct nfs_page *req)
35589a09141SPeter Zijlstra {
35620633f04SWeston Andros Adamson 	struct inode *inode = page_file_mapping(req->wb_page)->host;
35789a09141SPeter Zijlstra 	struct nfs_server *nfss = NFS_SERVER(inode);
35831a01f09STrond Myklebust 	bool is_done;
35989a09141SPeter Zijlstra 
36031a01f09STrond Myklebust 	is_done = nfs_page_group_sync_on_bit(req, PG_WB_END);
36131a01f09STrond Myklebust 	nfs_unlock_request(req);
36231a01f09STrond Myklebust 	if (!is_done)
36320633f04SWeston Andros Adamson 		return;
36420633f04SWeston Andros Adamson 
36520633f04SWeston Andros Adamson 	end_page_writeback(req->wb_page);
366c4dc4beeSPeter Zijlstra 	if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
3670db10944SJan Kara 		clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
36889a09141SPeter Zijlstra }
36989a09141SPeter Zijlstra 
370d4581383SWeston Andros Adamson /*
371d4581383SWeston Andros Adamson  * nfs_unroll_locks_and_wait -  unlock all newly locked reqs and wait on @req
372d4581383SWeston Andros Adamson  *
373d4581383SWeston Andros Adamson  * this is a helper function for nfs_lock_and_join_requests
374d4581383SWeston Andros Adamson  *
375d4581383SWeston Andros Adamson  * @inode - inode associated with request page group, must be holding inode lock
376d4581383SWeston Andros Adamson  * @head  - head request of page group, must be holding head lock
377d4581383SWeston Andros Adamson  * @req   - request that couldn't lock and needs to wait on the req bit lock
378d4581383SWeston Andros Adamson  *
379b5bab9bfSTrond Myklebust  * NOTE: this must be called holding page_group bit lock
380b5bab9bfSTrond Myklebust  *       which will be released before returning.
381d4581383SWeston Andros Adamson  *
382d4581383SWeston Andros Adamson  * returns 0 on success, < 0 on error.
383d4581383SWeston Andros Adamson  */
38474a6d4b5STrond Myklebust static void
38574a6d4b5STrond Myklebust nfs_unroll_locks(struct inode *inode, struct nfs_page *head,
3866d17d653STrond Myklebust 			  struct nfs_page *req)
387d4581383SWeston Andros Adamson {
388d4581383SWeston Andros Adamson 	struct nfs_page *tmp;
389e261f51fSTrond Myklebust 
390d4581383SWeston Andros Adamson 	/* relinquish all the locks successfully grabbed this run */
3915b2b5187STrond Myklebust 	for (tmp = head->wb_this_page ; tmp != req; tmp = tmp->wb_this_page) {
3925b2b5187STrond Myklebust 		if (!kref_read(&tmp->wb_kref))
3935b2b5187STrond Myklebust 			continue;
3945b2b5187STrond Myklebust 		nfs_unlock_and_release_request(tmp);
3955b2b5187STrond Myklebust 	}
396e261f51fSTrond Myklebust }
397d4581383SWeston Andros Adamson 
398d4581383SWeston Andros Adamson /*
399d4581383SWeston Andros Adamson  * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
400d4581383SWeston Andros Adamson  *
401d4581383SWeston Andros Adamson  * @destroy_list - request list (using wb_this_page) terminated by @old_head
402d4581383SWeston Andros Adamson  * @old_head - the old head of the list
403d4581383SWeston Andros Adamson  *
404d4581383SWeston Andros Adamson  * All subrequests must be locked and removed from all lists, so at this point
405d4581383SWeston Andros Adamson  * they are only "active" in this function, and possibly in nfs_wait_on_request
406d4581383SWeston Andros Adamson  * with a reference held by some other context.
407d4581383SWeston Andros Adamson  */
408d4581383SWeston Andros Adamson static void
409d4581383SWeston Andros Adamson nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
410b66aaa8dSTrond Myklebust 				 struct nfs_page *old_head,
411b66aaa8dSTrond Myklebust 				 struct inode *inode)
412d4581383SWeston Andros Adamson {
413d4581383SWeston Andros Adamson 	while (destroy_list) {
414d4581383SWeston Andros Adamson 		struct nfs_page *subreq = destroy_list;
415d4581383SWeston Andros Adamson 
416d4581383SWeston Andros Adamson 		destroy_list = (subreq->wb_this_page == old_head) ?
417d4581383SWeston Andros Adamson 				   NULL : subreq->wb_this_page;
418d4581383SWeston Andros Adamson 
419d4581383SWeston Andros Adamson 		WARN_ON_ONCE(old_head != subreq->wb_head);
420d4581383SWeston Andros Adamson 
421d4581383SWeston Andros Adamson 		/* make sure old group is not used */
422d4581383SWeston Andros Adamson 		subreq->wb_this_page = subreq;
423d4581383SWeston Andros Adamson 
424902a4c00STrond Myklebust 		clear_bit(PG_REMOVE, &subreq->wb_flags);
425902a4c00STrond Myklebust 
4265b2b5187STrond Myklebust 		/* Note: races with nfs_page_group_destroy() */
4275b2b5187STrond Myklebust 		if (!kref_read(&subreq->wb_kref)) {
4285b2b5187STrond Myklebust 			/* Check if we raced with nfs_page_group_destroy() */
429902a4c00STrond Myklebust 			if (test_and_clear_bit(PG_TEARDOWN, &subreq->wb_flags))
4305b2b5187STrond Myklebust 				nfs_free_request(subreq);
4315b2b5187STrond Myklebust 			continue;
4325b2b5187STrond Myklebust 		}
433d4581383SWeston Andros Adamson 
4345b2b5187STrond Myklebust 		subreq->wb_head = subreq;
4355b2b5187STrond Myklebust 
436b66aaa8dSTrond Myklebust 		if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) {
437d4581383SWeston Andros Adamson 			nfs_release_request(subreq);
438a6b6d5b8STrond Myklebust 			atomic_long_dec(&NFS_I(inode)->nrequests);
439d4581383SWeston Andros Adamson 		}
4405b2b5187STrond Myklebust 
4415b2b5187STrond Myklebust 		/* subreq is now totally disconnected from page group or any
4425b2b5187STrond Myklebust 		 * write / commit lists. last chance to wake any waiters */
4435b2b5187STrond Myklebust 		nfs_unlock_and_release_request(subreq);
444d4581383SWeston Andros Adamson 	}
445d4581383SWeston Andros Adamson }
446d4581383SWeston Andros Adamson 
447d4581383SWeston Andros Adamson /*
448d4581383SWeston Andros Adamson  * nfs_lock_and_join_requests - join all subreqs to the head req and return
449d4581383SWeston Andros Adamson  *                              a locked reference, cancelling any pending
450d4581383SWeston Andros Adamson  *                              operations for this page.
451d4581383SWeston Andros Adamson  *
452d4581383SWeston Andros Adamson  * @page - the page used to lookup the "page group" of nfs_page structures
453d4581383SWeston Andros Adamson  *
454d4581383SWeston Andros Adamson  * This function joins all sub requests to the head request by first
455d4581383SWeston Andros Adamson  * locking all requests in the group, cancelling any pending operations
456d4581383SWeston Andros Adamson  * and finally updating the head request to cover the whole range covered by
457d4581383SWeston Andros Adamson  * the (former) group.  All subrequests are removed from any write or commit
458d4581383SWeston Andros Adamson  * lists, unlinked from the group and destroyed.
459d4581383SWeston Andros Adamson  *
460d4581383SWeston Andros Adamson  * Returns a locked, referenced pointer to the head request - which after
461d4581383SWeston Andros Adamson  * this call is guaranteed to be the only request associated with the page.
462d4581383SWeston Andros Adamson  * Returns NULL if no requests are found for @page, or a ERR_PTR if an
463d4581383SWeston Andros Adamson  * error was encountered.
464d4581383SWeston Andros Adamson  */
465d4581383SWeston Andros Adamson static struct nfs_page *
4666d17d653STrond Myklebust nfs_lock_and_join_requests(struct page *page)
467d4581383SWeston Andros Adamson {
468d4581383SWeston Andros Adamson 	struct inode *inode = page_file_mapping(page)->host;
469d4581383SWeston Andros Adamson 	struct nfs_page *head, *subreq;
470d4581383SWeston Andros Adamson 	struct nfs_page *destroy_list = NULL;
471d4581383SWeston Andros Adamson 	unsigned int total_bytes;
472d4581383SWeston Andros Adamson 	int ret;
473d4581383SWeston Andros Adamson 
474d4581383SWeston Andros Adamson try_again:
475d4581383SWeston Andros Adamson 	/*
476d4581383SWeston Andros Adamson 	 * A reference is taken only on the head request which acts as a
477d4581383SWeston Andros Adamson 	 * reference to the whole page group - the group will not be destroyed
478d4581383SWeston Andros Adamson 	 * until the head reference is released.
479d4581383SWeston Andros Adamson 	 */
480bd37d6fcSTrond Myklebust 	head = nfs_page_find_head_request(page);
481bd37d6fcSTrond Myklebust 	if (!head)
482d4581383SWeston Andros Adamson 		return NULL;
483d4581383SWeston Andros Adamson 
484a0e265bcSTrond Myklebust 	/* lock the page head first in order to avoid an ABBA inefficiency */
485a0e265bcSTrond Myklebust 	if (!nfs_lock_request(head)) {
486a0e265bcSTrond Myklebust 		ret = nfs_wait_on_request(head);
487a0e265bcSTrond Myklebust 		nfs_release_request(head);
488a0e265bcSTrond Myklebust 		if (ret < 0)
489a0e265bcSTrond Myklebust 			return ERR_PTR(ret);
490a0e265bcSTrond Myklebust 		goto try_again;
491a0e265bcSTrond Myklebust 	}
492bd37d6fcSTrond Myklebust 
493bd37d6fcSTrond Myklebust 	/* Ensure that nobody removed the request before we locked it */
494bd37d6fcSTrond Myklebust 	if (head != nfs_page_private_request(page) && !PageSwapCache(page)) {
495bd37d6fcSTrond Myklebust 		nfs_unlock_and_release_request(head);
496bd37d6fcSTrond Myklebust 		goto try_again;
497bd37d6fcSTrond Myklebust 	}
4987c3af975SWeston Andros Adamson 
4991344b7eaSTrond Myklebust 	ret = nfs_page_group_lock(head);
5000671d8f1SMarkus Elfring 	if (ret < 0)
5010671d8f1SMarkus Elfring 		goto release_request;
5027c3af975SWeston Andros Adamson 
5037c3af975SWeston Andros Adamson 	/* lock each request in the page group */
504a0e265bcSTrond Myklebust 	total_bytes = head->wb_bytes;
505a0e265bcSTrond Myklebust 	for (subreq = head->wb_this_page; subreq != head;
506a0e265bcSTrond Myklebust 			subreq = subreq->wb_this_page) {
50774a6d4b5STrond Myklebust 
5081bd5d6d0STrond Myklebust 		if (!kref_get_unless_zero(&subreq->wb_kref)) {
5091bd5d6d0STrond Myklebust 			if (subreq->wb_offset == head->wb_offset + total_bytes)
5101bd5d6d0STrond Myklebust 				total_bytes += subreq->wb_bytes;
5115b2b5187STrond Myklebust 			continue;
5121bd5d6d0STrond Myklebust 		}
5131bd5d6d0STrond Myklebust 
51474a6d4b5STrond Myklebust 		while (!nfs_lock_request(subreq)) {
515b5bab9bfSTrond Myklebust 			/*
51674a6d4b5STrond Myklebust 			 * Unlock page to allow nfs_page_group_sync_on_bit()
51774a6d4b5STrond Myklebust 			 * to succeed
518b5bab9bfSTrond Myklebust 			 */
51974a6d4b5STrond Myklebust 			nfs_page_group_unlock(head);
52074a6d4b5STrond Myklebust 			ret = nfs_wait_on_request(subreq);
52174a6d4b5STrond Myklebust 			if (!ret)
5221344b7eaSTrond Myklebust 				ret = nfs_page_group_lock(head);
52374a6d4b5STrond Myklebust 			if (ret < 0) {
52474a6d4b5STrond Myklebust 				nfs_unroll_locks(inode, head, subreq);
5255b2b5187STrond Myklebust 				nfs_release_request(subreq);
5260671d8f1SMarkus Elfring 				goto release_request;
527d4581383SWeston Andros Adamson 			}
52874a6d4b5STrond Myklebust 		}
529e14bebf6STrond Myklebust 		/*
530e14bebf6STrond Myklebust 		 * Subrequests are always contiguous, non overlapping
531e14bebf6STrond Myklebust 		 * and in order - but may be repeated (mirrored writes).
532e14bebf6STrond Myklebust 		 */
533e14bebf6STrond Myklebust 		if (subreq->wb_offset == (head->wb_offset + total_bytes)) {
534e14bebf6STrond Myklebust 			/* keep track of how many bytes this group covers */
535e14bebf6STrond Myklebust 			total_bytes += subreq->wb_bytes;
536e14bebf6STrond Myklebust 		} else if (WARN_ON_ONCE(subreq->wb_offset < head->wb_offset ||
537e14bebf6STrond Myklebust 			    ((subreq->wb_offset + subreq->wb_bytes) >
538e14bebf6STrond Myklebust 			     (head->wb_offset + total_bytes)))) {
5398b77484fSTrond Myklebust 			nfs_page_group_unlock(head);
54074a6d4b5STrond Myklebust 			nfs_unroll_locks(inode, head, subreq);
5415b2b5187STrond Myklebust 			nfs_unlock_and_release_request(subreq);
5420671d8f1SMarkus Elfring 			ret = -EIO;
5430671d8f1SMarkus Elfring 			goto release_request;
544e14bebf6STrond Myklebust 		}
545a0e265bcSTrond Myklebust 	}
546d4581383SWeston Andros Adamson 
547d4581383SWeston Andros Adamson 	/* Now that all requests are locked, make sure they aren't on any list.
548d4581383SWeston Andros Adamson 	 * Commit list removal accounting is done after locks are dropped */
549d4581383SWeston Andros Adamson 	subreq = head;
550d4581383SWeston Andros Adamson 	do {
551411a99adSWeston Andros Adamson 		nfs_clear_request_commit(subreq);
552d4581383SWeston Andros Adamson 		subreq = subreq->wb_this_page;
553d4581383SWeston Andros Adamson 	} while (subreq != head);
554d4581383SWeston Andros Adamson 
555d4581383SWeston Andros Adamson 	/* unlink subrequests from head, destroy them later */
556d4581383SWeston Andros Adamson 	if (head->wb_this_page != head) {
557d4581383SWeston Andros Adamson 		/* destroy list will be terminated by head */
558d4581383SWeston Andros Adamson 		destroy_list = head->wb_this_page;
559d4581383SWeston Andros Adamson 		head->wb_this_page = head;
560d4581383SWeston Andros Adamson 
561d4581383SWeston Andros Adamson 		/* change head request to cover whole range that
562d4581383SWeston Andros Adamson 		 * the former page group covered */
563d4581383SWeston Andros Adamson 		head->wb_bytes = total_bytes;
564d4581383SWeston Andros Adamson 	}
565d4581383SWeston Andros Adamson 
566b66aaa8dSTrond Myklebust 	/* Postpone destruction of this request */
567b66aaa8dSTrond Myklebust 	if (test_and_clear_bit(PG_REMOVE, &head->wb_flags)) {
568b66aaa8dSTrond Myklebust 		set_bit(PG_INODE_REF, &head->wb_flags);
569b66aaa8dSTrond Myklebust 		kref_get(&head->wb_kref);
570a6b6d5b8STrond Myklebust 		atomic_long_inc(&NFS_I(inode)->nrequests);
571b66aaa8dSTrond Myklebust 	}
572b66aaa8dSTrond Myklebust 
573d4581383SWeston Andros Adamson 	nfs_page_group_unlock(head);
574d4581383SWeston Andros Adamson 
575b66aaa8dSTrond Myklebust 	nfs_destroy_unlinked_subrequests(destroy_list, head, inode);
576d4581383SWeston Andros Adamson 
577b5bab9bfSTrond Myklebust 	/* Did we lose a race with nfs_inode_remove_request()? */
578b5bab9bfSTrond Myklebust 	if (!(PagePrivate(page) || PageSwapCache(page))) {
579b5bab9bfSTrond Myklebust 		nfs_unlock_and_release_request(head);
580b5bab9bfSTrond Myklebust 		return NULL;
581b5bab9bfSTrond Myklebust 	}
582b5bab9bfSTrond Myklebust 
583bd37d6fcSTrond Myklebust 	/* still holds ref on head from nfs_page_find_head_request
584d4581383SWeston Andros Adamson 	 * and still has lock on head from lock loop */
585d4581383SWeston Andros Adamson 	return head;
5860671d8f1SMarkus Elfring 
5870671d8f1SMarkus Elfring release_request:
5880671d8f1SMarkus Elfring 	nfs_unlock_and_release_request(head);
5890671d8f1SMarkus Elfring 	return ERR_PTR(ret);
590612c9384STrond Myklebust }
591074cc1deSTrond Myklebust 
5926fbda89bSTrond Myklebust static void nfs_write_error(struct nfs_page *req, int error)
5930bcbf039SPeng Tao {
5946fbda89bSTrond Myklebust 	nfs_mapping_set_error(req->wb_page, error);
5950bcbf039SPeng Tao 	nfs_end_page_writeback(req);
5961f84ccdfSFred Isaman 	nfs_release_request(req);
5970bcbf039SPeng Tao }
5980bcbf039SPeng Tao 
599a6598813STrond Myklebust static bool
600a6598813STrond Myklebust nfs_error_is_fatal_on_server(int err)
601a6598813STrond Myklebust {
602a6598813STrond Myklebust 	switch (err) {
603a6598813STrond Myklebust 	case 0:
604a6598813STrond Myklebust 	case -ERESTARTSYS:
605a6598813STrond Myklebust 	case -EINTR:
606a6598813STrond Myklebust 		return false;
607a6598813STrond Myklebust 	}
608a6598813STrond Myklebust 	return nfs_error_is_fatal(err);
609e261f51fSTrond Myklebust }
610074cc1deSTrond Myklebust 
611074cc1deSTrond Myklebust /*
612074cc1deSTrond Myklebust  * Find an associated nfs write request, and prepare to flush it out
613074cc1deSTrond Myklebust  * May return an error if the user signalled nfs_wait_on_request().
614074cc1deSTrond Myklebust  */
615074cc1deSTrond Myklebust static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
6166d17d653STrond Myklebust 				struct page *page)
617074cc1deSTrond Myklebust {
6186fbda89bSTrond Myklebust 	struct address_space *mapping;
619074cc1deSTrond Myklebust 	struct nfs_page *req;
620074cc1deSTrond Myklebust 	int ret = 0;
621074cc1deSTrond Myklebust 
6226d17d653STrond Myklebust 	req = nfs_lock_and_join_requests(page);
623074cc1deSTrond Myklebust 	if (!req)
624074cc1deSTrond Myklebust 		goto out;
625074cc1deSTrond Myklebust 	ret = PTR_ERR(req);
626074cc1deSTrond Myklebust 	if (IS_ERR(req))
627074cc1deSTrond Myklebust 		goto out;
628074cc1deSTrond Myklebust 
629deed85e7STrond Myklebust 	nfs_set_page_writeback(page);
630deed85e7STrond Myklebust 	WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
631074cc1deSTrond Myklebust 
632a6598813STrond Myklebust 	/* If there is a fatal error that covers this write, just exit */
6336fbda89bSTrond Myklebust 	ret = 0;
6346fbda89bSTrond Myklebust 	mapping = page_file_mapping(page);
6356fbda89bSTrond Myklebust 	if (test_bit(AS_ENOSPC, &mapping->flags) ||
6366fbda89bSTrond Myklebust 	    test_bit(AS_EIO, &mapping->flags))
637a6598813STrond Myklebust 		goto out_launder;
638a6598813STrond Myklebust 
639f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(pgio, req)) {
640074cc1deSTrond Myklebust 		ret = pgio->pg_error;
6410bcbf039SPeng Tao 		/*
642c373fff7STrond Myklebust 		 * Remove the problematic req upon fatal errors on the server
6430bcbf039SPeng Tao 		 */
6440bcbf039SPeng Tao 		if (nfs_error_is_fatal(ret)) {
645c373fff7STrond Myklebust 			if (nfs_error_is_fatal_on_server(ret))
646a6598813STrond Myklebust 				goto out_launder;
6478fc75bedSTrond Myklebust 		} else
6480bcbf039SPeng Tao 			ret = -EAGAIN;
6498fc75bedSTrond Myklebust 		nfs_redirty_request(req);
65040f90271STrond Myklebust 	} else
65140f90271STrond Myklebust 		nfs_add_stats(page_file_mapping(page)->host,
65240f90271STrond Myklebust 				NFSIOS_WRITEPAGES, 1);
653074cc1deSTrond Myklebust out:
654074cc1deSTrond Myklebust 	return ret;
655a6598813STrond Myklebust out_launder:
6566fbda89bSTrond Myklebust 	nfs_write_error(req, ret);
65714bebe3cSTrond Myklebust 	return 0;
658e261f51fSTrond Myklebust }
659e261f51fSTrond Myklebust 
660d6c843b9SPeng Tao static int nfs_do_writepage(struct page *page, struct writeback_control *wbc,
661c373fff7STrond Myklebust 			    struct nfs_pageio_descriptor *pgio)
662f758c885STrond Myklebust {
663cfb506e1STrond Myklebust 	int ret;
664f758c885STrond Myklebust 
6658cd79788SHuang Ying 	nfs_pageio_cond_complete(pgio, page_index(page));
6666d17d653STrond Myklebust 	ret = nfs_page_async_flush(pgio, page);
667cfb506e1STrond Myklebust 	if (ret == -EAGAIN) {
668cfb506e1STrond Myklebust 		redirty_page_for_writepage(wbc, page);
669cfb506e1STrond Myklebust 		ret = 0;
670cfb506e1STrond Myklebust 	}
671cfb506e1STrond Myklebust 	return ret;
672f758c885STrond Myklebust }
673f758c885STrond Myklebust 
674e261f51fSTrond Myklebust /*
6751da177e4SLinus Torvalds  * Write an mmapped page to the server.
6761da177e4SLinus Torvalds  */
677d6c843b9SPeng Tao static int nfs_writepage_locked(struct page *page,
678c373fff7STrond Myklebust 				struct writeback_control *wbc)
6791da177e4SLinus Torvalds {
680f758c885STrond Myklebust 	struct nfs_pageio_descriptor pgio;
68140f90271STrond Myklebust 	struct inode *inode = page_file_mapping(page)->host;
682e261f51fSTrond Myklebust 	int err;
6831da177e4SLinus Torvalds 
68440f90271STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
685811ed92eSTrond Myklebust 	nfs_pageio_init_write(&pgio, inode, 0,
686a20c93e3SChristoph Hellwig 				false, &nfs_async_write_completion_ops);
687c373fff7STrond Myklebust 	err = nfs_do_writepage(page, wbc, &pgio);
688f758c885STrond Myklebust 	nfs_pageio_complete(&pgio);
689f758c885STrond Myklebust 	if (err < 0)
6904d770ccfSTrond Myklebust 		return err;
691f758c885STrond Myklebust 	if (pgio.pg_error < 0)
692f758c885STrond Myklebust 		return pgio.pg_error;
693f758c885STrond Myklebust 	return 0;
6944d770ccfSTrond Myklebust }
6954d770ccfSTrond Myklebust 
6964d770ccfSTrond Myklebust int nfs_writepage(struct page *page, struct writeback_control *wbc)
6974d770ccfSTrond Myklebust {
698f758c885STrond Myklebust 	int ret;
6994d770ccfSTrond Myklebust 
700c373fff7STrond Myklebust 	ret = nfs_writepage_locked(page, wbc);
7011da177e4SLinus Torvalds 	unlock_page(page);
702f758c885STrond Myklebust 	return ret;
703f758c885STrond Myklebust }
704f758c885STrond Myklebust 
705f758c885STrond Myklebust static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
706f758c885STrond Myklebust {
707f758c885STrond Myklebust 	int ret;
708f758c885STrond Myklebust 
709c373fff7STrond Myklebust 	ret = nfs_do_writepage(page, wbc, data);
710f758c885STrond Myklebust 	unlock_page(page);
711f758c885STrond Myklebust 	return ret;
7121da177e4SLinus Torvalds }
7131da177e4SLinus Torvalds 
714919e3bd9STrond Myklebust static void nfs_io_completion_commit(void *inode)
715919e3bd9STrond Myklebust {
716919e3bd9STrond Myklebust 	nfs_commit_inode(inode, 0);
717919e3bd9STrond Myklebust }
718919e3bd9STrond Myklebust 
7191da177e4SLinus Torvalds int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
7201da177e4SLinus Torvalds {
7211da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
722c63c7b05STrond Myklebust 	struct nfs_pageio_descriptor pgio;
723875bc3fbSTrond Myklebust 	struct nfs_io_completion *ioc;
724875bc3fbSTrond Myklebust 	unsigned int pflags = memalloc_nofs_save();
7251da177e4SLinus Torvalds 	int err;
7261da177e4SLinus Torvalds 
72791d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
72891d5b470SChuck Lever 
729875bc3fbSTrond Myklebust 	ioc = nfs_io_completion_alloc(GFP_NOFS);
730919e3bd9STrond Myklebust 	if (ioc)
731919e3bd9STrond Myklebust 		nfs_io_completion_init(ioc, nfs_io_completion_commit, inode);
732919e3bd9STrond Myklebust 
733a20c93e3SChristoph Hellwig 	nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
734a20c93e3SChristoph Hellwig 				&nfs_async_write_completion_ops);
735919e3bd9STrond Myklebust 	pgio.pg_io_completion = ioc;
736f758c885STrond Myklebust 	err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
737c63c7b05STrond Myklebust 	nfs_pageio_complete(&pgio);
738919e3bd9STrond Myklebust 	nfs_io_completion_put(ioc);
73972cb77f4STrond Myklebust 
740875bc3fbSTrond Myklebust 	memalloc_nofs_restore(pflags);
741875bc3fbSTrond Myklebust 
742f758c885STrond Myklebust 	if (err < 0)
74372cb77f4STrond Myklebust 		goto out_err;
74472cb77f4STrond Myklebust 	err = pgio.pg_error;
74572cb77f4STrond Myklebust 	if (err < 0)
74672cb77f4STrond Myklebust 		goto out_err;
747c63c7b05STrond Myklebust 	return 0;
74872cb77f4STrond Myklebust out_err:
74972cb77f4STrond Myklebust 	return err;
7501da177e4SLinus Torvalds }
7511da177e4SLinus Torvalds 
7521da177e4SLinus Torvalds /*
7531da177e4SLinus Torvalds  * Insert a write request into an inode
7541da177e4SLinus Torvalds  */
755d6d6dc7cSFred Isaman static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
7561da177e4SLinus Torvalds {
7574b9bb25bSTrond Myklebust 	struct address_space *mapping = page_file_mapping(req->wb_page);
7581da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
759e7d39069STrond Myklebust 
7602bfc6e56SWeston Andros Adamson 	WARN_ON_ONCE(req->wb_this_page != req);
7612bfc6e56SWeston Andros Adamson 
762e7d39069STrond Myklebust 	/* Lock the request! */
7637ad84aa9STrond Myklebust 	nfs_lock_request(req);
764e7d39069STrond Myklebust 
76529418aa4SMel Gorman 	/*
76629418aa4SMel Gorman 	 * Swap-space should not get truncated. Hence no need to plug the race
76729418aa4SMel Gorman 	 * with invalidate/truncate.
76829418aa4SMel Gorman 	 */
7694b9bb25bSTrond Myklebust 	spin_lock(&mapping->private_lock);
7704b9bb25bSTrond Myklebust 	if (!nfs_have_writebacks(inode) &&
7711eb5d98fSJeff Layton 	    NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
7721eb5d98fSJeff Layton 		inode_inc_iversion_raw(inode);
77329418aa4SMel Gorman 	if (likely(!PageSwapCache(req->wb_page))) {
7742df485a7STrond Myklebust 		set_bit(PG_MAPPED, &req->wb_flags);
775deb7d638STrond Myklebust 		SetPagePrivate(req->wb_page);
776277459d2STrond Myklebust 		set_page_private(req->wb_page, (unsigned long)req);
77729418aa4SMel Gorman 	}
7784b9bb25bSTrond Myklebust 	spin_unlock(&mapping->private_lock);
779a6b6d5b8STrond Myklebust 	atomic_long_inc(&nfsi->nrequests);
78017089a29SWeston Andros Adamson 	/* this a head request for a page group - mark it as having an
781cb1410c7SWeston Andros Adamson 	 * extra reference so sub groups can follow suit.
782cb1410c7SWeston Andros Adamson 	 * This flag also informs pgio layer when to bump nrequests when
783cb1410c7SWeston Andros Adamson 	 * adding subrequests. */
78417089a29SWeston Andros Adamson 	WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
785c03b4024STrond Myklebust 	kref_get(&req->wb_kref);
7861da177e4SLinus Torvalds }
7871da177e4SLinus Torvalds 
7881da177e4SLinus Torvalds /*
78989a09141SPeter Zijlstra  * Remove a write request from an inode
7901da177e4SLinus Torvalds  */
7911da177e4SLinus Torvalds static void nfs_inode_remove_request(struct nfs_page *req)
7921da177e4SLinus Torvalds {
7934b9bb25bSTrond Myklebust 	struct address_space *mapping = page_file_mapping(req->wb_page);
7944b9bb25bSTrond Myklebust 	struct inode *inode = mapping->host;
7951da177e4SLinus Torvalds 	struct nfs_inode *nfsi = NFS_I(inode);
79620633f04SWeston Andros Adamson 	struct nfs_page *head;
79720633f04SWeston Andros Adamson 
798a6b6d5b8STrond Myklebust 	atomic_long_dec(&nfsi->nrequests);
79920633f04SWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
80020633f04SWeston Andros Adamson 		head = req->wb_head;
8011da177e4SLinus Torvalds 
8024b9bb25bSTrond Myklebust 		spin_lock(&mapping->private_lock);
80367911c8fSAnna Schumaker 		if (likely(head->wb_page && !PageSwapCache(head->wb_page))) {
80420633f04SWeston Andros Adamson 			set_page_private(head->wb_page, 0);
80520633f04SWeston Andros Adamson 			ClearPagePrivate(head->wb_page);
80620633f04SWeston Andros Adamson 			clear_bit(PG_MAPPED, &head->wb_flags);
80729418aa4SMel Gorman 		}
8084b9bb25bSTrond Myklebust 		spin_unlock(&mapping->private_lock);
80920633f04SWeston Andros Adamson 	}
81017089a29SWeston Andros Adamson 
81117089a29SWeston Andros Adamson 	if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
8121da177e4SLinus Torvalds 		nfs_release_request(req);
8131da177e4SLinus Torvalds }
8141da177e4SLinus Torvalds 
81561822ab5STrond Myklebust static void
8166d884e8fSFred nfs_mark_request_dirty(struct nfs_page *req)
81761822ab5STrond Myklebust {
81867911c8fSAnna Schumaker 	if (req->wb_page)
81961822ab5STrond Myklebust 		__set_page_dirty_nobuffers(req->wb_page);
82061822ab5STrond Myklebust }
82161822ab5STrond Myklebust 
8223a3908c8STrond Myklebust /*
8233a3908c8STrond Myklebust  * nfs_page_search_commits_for_head_request_locked
8243a3908c8STrond Myklebust  *
8253a3908c8STrond Myklebust  * Search through commit lists on @inode for the head request for @page.
8263a3908c8STrond Myklebust  * Must be called while holding the inode (which is cinfo) lock.
8273a3908c8STrond Myklebust  *
8283a3908c8STrond Myklebust  * Returns the head request if found, or NULL if not found.
8293a3908c8STrond Myklebust  */
8303a3908c8STrond Myklebust static struct nfs_page *
8313a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
8323a3908c8STrond Myklebust 						struct page *page)
8333a3908c8STrond Myklebust {
8343a3908c8STrond Myklebust 	struct nfs_page *freq, *t;
8353a3908c8STrond Myklebust 	struct nfs_commit_info cinfo;
8363a3908c8STrond Myklebust 	struct inode *inode = &nfsi->vfs_inode;
8373a3908c8STrond Myklebust 
8383a3908c8STrond Myklebust 	nfs_init_cinfo_from_inode(&cinfo, inode);
8393a3908c8STrond Myklebust 
8403a3908c8STrond Myklebust 	/* search through pnfs commit lists */
8413a3908c8STrond Myklebust 	freq = pnfs_search_commit_reqs(inode, &cinfo, page);
8423a3908c8STrond Myklebust 	if (freq)
8433a3908c8STrond Myklebust 		return freq->wb_head;
8443a3908c8STrond Myklebust 
8453a3908c8STrond Myklebust 	/* Linearly search the commit list for the correct request */
8463a3908c8STrond Myklebust 	list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
8473a3908c8STrond Myklebust 		if (freq->wb_page == page)
8483a3908c8STrond Myklebust 			return freq->wb_head;
8493a3908c8STrond Myklebust 	}
8503a3908c8STrond Myklebust 
8513a3908c8STrond Myklebust 	return NULL;
8523a3908c8STrond Myklebust }
8533a3908c8STrond Myklebust 
8548dd37758STrond Myklebust /**
85586d80f97STrond Myklebust  * nfs_request_add_commit_list_locked - add request to a commit list
85686d80f97STrond Myklebust  * @req: pointer to a struct nfs_page
85786d80f97STrond Myklebust  * @dst: commit list head
85886d80f97STrond Myklebust  * @cinfo: holds list lock and accounting info
85986d80f97STrond Myklebust  *
86086d80f97STrond Myklebust  * This sets the PG_CLEAN bit, updates the cinfo count of
86186d80f97STrond Myklebust  * number of outstanding requests requiring a commit as well as
86286d80f97STrond Myklebust  * the MM page stats.
86386d80f97STrond Myklebust  *
864e824f99aSTrond Myklebust  * The caller must hold NFS_I(cinfo->inode)->commit_mutex, and the
865e824f99aSTrond Myklebust  * nfs_page lock.
86686d80f97STrond Myklebust  */
86786d80f97STrond Myklebust void
86886d80f97STrond Myklebust nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
86986d80f97STrond Myklebust 			    struct nfs_commit_info *cinfo)
87086d80f97STrond Myklebust {
87186d80f97STrond Myklebust 	set_bit(PG_CLEAN, &req->wb_flags);
87286d80f97STrond Myklebust 	nfs_list_add_request(req, dst);
8735cb953d4STrond Myklebust 	atomic_long_inc(&cinfo->mds->ncommit);
87486d80f97STrond Myklebust }
87586d80f97STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
87686d80f97STrond Myklebust 
87786d80f97STrond Myklebust /**
8788dd37758STrond Myklebust  * nfs_request_add_commit_list - add request to a commit list
8798dd37758STrond Myklebust  * @req: pointer to a struct nfs_page
880ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
8818dd37758STrond Myklebust  *
882ea2cf228SFred Isaman  * This sets the PG_CLEAN bit, updates the cinfo count of
8838dd37758STrond Myklebust  * number of outstanding requests requiring a commit as well as
8848dd37758STrond Myklebust  * the MM page stats.
8858dd37758STrond Myklebust  *
886ea2cf228SFred Isaman  * The caller must _not_ hold the cinfo->lock, but must be
8878dd37758STrond Myklebust  * holding the nfs_page lock.
8888dd37758STrond Myklebust  */
8898dd37758STrond Myklebust void
8906272dcc6SAnna Schumaker nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
8918dd37758STrond Myklebust {
892e824f99aSTrond Myklebust 	mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
8936272dcc6SAnna Schumaker 	nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
894e824f99aSTrond Myklebust 	mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
89567911c8fSAnna Schumaker 	if (req->wb_page)
89686d80f97STrond Myklebust 		nfs_mark_page_unstable(req->wb_page, cinfo);
8978dd37758STrond Myklebust }
8988dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
8998dd37758STrond Myklebust 
9008dd37758STrond Myklebust /**
9018dd37758STrond Myklebust  * nfs_request_remove_commit_list - Remove request from a commit list
9028dd37758STrond Myklebust  * @req: pointer to a nfs_page
903ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
9048dd37758STrond Myklebust  *
905ea2cf228SFred Isaman  * This clears the PG_CLEAN bit, and updates the cinfo's count of
9068dd37758STrond Myklebust  * number of outstanding requests requiring a commit
9078dd37758STrond Myklebust  * It does not update the MM page stats.
9088dd37758STrond Myklebust  *
909ea2cf228SFred Isaman  * The caller _must_ hold the cinfo->lock and the nfs_page lock.
9108dd37758STrond Myklebust  */
9118dd37758STrond Myklebust void
912ea2cf228SFred Isaman nfs_request_remove_commit_list(struct nfs_page *req,
913ea2cf228SFred Isaman 			       struct nfs_commit_info *cinfo)
9148dd37758STrond Myklebust {
9158dd37758STrond Myklebust 	if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
9168dd37758STrond Myklebust 		return;
9178dd37758STrond Myklebust 	nfs_list_remove_request(req);
9185cb953d4STrond Myklebust 	atomic_long_dec(&cinfo->mds->ncommit);
9198dd37758STrond Myklebust }
9208dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
9218dd37758STrond Myklebust 
922ea2cf228SFred Isaman static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
923ea2cf228SFred Isaman 				      struct inode *inode)
924ea2cf228SFred Isaman {
925fe238e60SDave Wysochanski 	cinfo->inode = inode;
926ea2cf228SFred Isaman 	cinfo->mds = &NFS_I(inode)->commit_info;
927ea2cf228SFred Isaman 	cinfo->ds = pnfs_get_ds_info(inode);
928b359f9d0SFred Isaman 	cinfo->dreq = NULL;
929f453a54aSFred Isaman 	cinfo->completion_ops = &nfs_commit_completion_ops;
930ea2cf228SFred Isaman }
931ea2cf228SFred Isaman 
932ea2cf228SFred Isaman void nfs_init_cinfo(struct nfs_commit_info *cinfo,
933ea2cf228SFred Isaman 		    struct inode *inode,
934ea2cf228SFred Isaman 		    struct nfs_direct_req *dreq)
935ea2cf228SFred Isaman {
9361763da12SFred Isaman 	if (dreq)
9371763da12SFred Isaman 		nfs_init_cinfo_from_dreq(cinfo, dreq);
9381763da12SFred Isaman 	else
939ea2cf228SFred Isaman 		nfs_init_cinfo_from_inode(cinfo, inode);
940ea2cf228SFred Isaman }
941ea2cf228SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_cinfo);
9428dd37758STrond Myklebust 
9431da177e4SLinus Torvalds /*
9441da177e4SLinus Torvalds  * Add a request to the inode's commit list.
9451da177e4SLinus Torvalds  */
9461763da12SFred Isaman void
947ea2cf228SFred Isaman nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
948b57ff130SWeston Andros Adamson 			struct nfs_commit_info *cinfo, u32 ds_commit_idx)
9491da177e4SLinus Torvalds {
950b57ff130SWeston Andros Adamson 	if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
9518dd37758STrond Myklebust 		return;
9526272dcc6SAnna Schumaker 	nfs_request_add_commit_list(req, cinfo);
9531da177e4SLinus Torvalds }
9548e821cadSTrond Myklebust 
955d6d6dc7cSFred Isaman static void
956d6d6dc7cSFred Isaman nfs_clear_page_commit(struct page *page)
957e468bae9STrond Myklebust {
95811fb9989SMel Gorman 	dec_node_page_state(page, NR_UNSTABLE_NFS);
95993f78d88STejun Heo 	dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb,
96093f78d88STejun Heo 		    WB_RECLAIMABLE);
961e468bae9STrond Myklebust }
962d6d6dc7cSFred Isaman 
963b5bab9bfSTrond Myklebust /* Called holding the request lock on @req */
9648dd37758STrond Myklebust static void
965d6d6dc7cSFred Isaman nfs_clear_request_commit(struct nfs_page *req)
966d6d6dc7cSFred Isaman {
9678dd37758STrond Myklebust 	if (test_bit(PG_CLEAN, &req->wb_flags)) {
9689fcd5960STrond Myklebust 		struct nfs_open_context *ctx = nfs_req_openctx(req);
9699fcd5960STrond Myklebust 		struct inode *inode = d_inode(ctx->dentry);
970ea2cf228SFred Isaman 		struct nfs_commit_info cinfo;
971d6d6dc7cSFred Isaman 
972ea2cf228SFred Isaman 		nfs_init_cinfo_from_inode(&cinfo, inode);
973e824f99aSTrond Myklebust 		mutex_lock(&NFS_I(inode)->commit_mutex);
974ea2cf228SFred Isaman 		if (!pnfs_clear_request_commit(req, &cinfo)) {
975ea2cf228SFred Isaman 			nfs_request_remove_commit_list(req, &cinfo);
976d6d6dc7cSFred Isaman 		}
977e824f99aSTrond Myklebust 		mutex_unlock(&NFS_I(inode)->commit_mutex);
9788dd37758STrond Myklebust 		nfs_clear_page_commit(req->wb_page);
9798dd37758STrond Myklebust 	}
980e468bae9STrond Myklebust }
981e468bae9STrond Myklebust 
982d45f60c6SWeston Andros Adamson int nfs_write_need_commit(struct nfs_pgio_header *hdr)
9838e821cadSTrond Myklebust {
984c65e6254SWeston Andros Adamson 	if (hdr->verf.committed == NFS_DATA_SYNC)
985d45f60c6SWeston Andros Adamson 		return hdr->lseg == NULL;
986c65e6254SWeston Andros Adamson 	return hdr->verf.committed != NFS_FILE_SYNC;
9878e821cadSTrond Myklebust }
9888e821cadSTrond Myklebust 
989919e3bd9STrond Myklebust static void nfs_async_write_init(struct nfs_pgio_header *hdr)
990919e3bd9STrond Myklebust {
991919e3bd9STrond Myklebust 	nfs_io_completion_get(hdr->io_completion);
992919e3bd9STrond Myklebust }
993919e3bd9STrond Myklebust 
994061ae2edSFred Isaman static void nfs_write_completion(struct nfs_pgio_header *hdr)
9956c75dc0dSFred Isaman {
996ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
9976c75dc0dSFred Isaman 	unsigned long bytes = 0;
9986c75dc0dSFred Isaman 
9996c75dc0dSFred Isaman 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
10006c75dc0dSFred Isaman 		goto out;
1001ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
10026c75dc0dSFred Isaman 	while (!list_empty(&hdr->pages)) {
10036c75dc0dSFred Isaman 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
10046c75dc0dSFred Isaman 
10056c75dc0dSFred Isaman 		bytes += req->wb_bytes;
10066c75dc0dSFred Isaman 		nfs_list_remove_request(req);
10076c75dc0dSFred Isaman 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
10086c75dc0dSFred Isaman 		    (hdr->good_bytes < bytes)) {
1009d2ceb7e5SBenjamin Coddington 			nfs_set_pageerror(page_file_mapping(req->wb_page));
10106fbda89bSTrond Myklebust 			nfs_mapping_set_error(req->wb_page, hdr->error);
10116c75dc0dSFred Isaman 			goto remove_req;
10126c75dc0dSFred Isaman 		}
1013c65e6254SWeston Andros Adamson 		if (nfs_write_need_commit(hdr)) {
101433344e0fSTrond Myklebust 			/* Reset wb_nio, since the write was successful. */
101533344e0fSTrond Myklebust 			req->wb_nio = 0;
1016f79d06f5SAnna Schumaker 			memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
1017b57ff130SWeston Andros Adamson 			nfs_mark_request_commit(req, hdr->lseg, &cinfo,
1018a7d42ddbSWeston Andros Adamson 				hdr->pgio_mirror_idx);
10196c75dc0dSFred Isaman 			goto next;
10206c75dc0dSFred Isaman 		}
10216c75dc0dSFred Isaman remove_req:
10226c75dc0dSFred Isaman 		nfs_inode_remove_request(req);
10236c75dc0dSFred Isaman next:
102420633f04SWeston Andros Adamson 		nfs_end_page_writeback(req);
10253aff4ebbSTrond Myklebust 		nfs_release_request(req);
10266c75dc0dSFred Isaman 	}
10276c75dc0dSFred Isaman out:
1028919e3bd9STrond Myklebust 	nfs_io_completion_put(hdr->io_completion);
10296c75dc0dSFred Isaman 	hdr->release(hdr);
10306c75dc0dSFred Isaman }
10316c75dc0dSFred Isaman 
1032ce59515cSAnna Schumaker unsigned long
1033ea2cf228SFred Isaman nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
1034fb8a1f11STrond Myklebust {
10355cb953d4STrond Myklebust 	return atomic_long_read(&cinfo->mds->ncommit);
1036fb8a1f11STrond Myklebust }
1037fb8a1f11STrond Myklebust 
1038e824f99aSTrond Myklebust /* NFS_I(cinfo->inode)->commit_mutex held by caller */
10391763da12SFred Isaman int
1040ea2cf228SFred Isaman nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
1041ea2cf228SFred Isaman 		     struct nfs_commit_info *cinfo, int max)
1042d6d6dc7cSFred Isaman {
1043137da553STrond Myklebust 	struct nfs_page *req, *tmp;
1044d6d6dc7cSFred Isaman 	int ret = 0;
1045d6d6dc7cSFred Isaman 
1046137da553STrond Myklebust restart:
1047137da553STrond Myklebust 	list_for_each_entry_safe(req, tmp, src, wb_list) {
10487ad84aa9STrond Myklebust 		kref_get(&req->wb_kref);
10492ce209c4STrond Myklebust 		if (!nfs_lock_request(req)) {
10502ce209c4STrond Myklebust 			int status;
1051137da553STrond Myklebust 
1052137da553STrond Myklebust 			/* Prevent deadlock with nfs_lock_and_join_requests */
1053137da553STrond Myklebust 			if (!list_empty(dst)) {
1054137da553STrond Myklebust 				nfs_release_request(req);
1055137da553STrond Myklebust 				continue;
1056137da553STrond Myklebust 			}
1057137da553STrond Myklebust 			/* Ensure we make progress to prevent livelock */
10582ce209c4STrond Myklebust 			mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
10592ce209c4STrond Myklebust 			status = nfs_wait_on_request(req);
10602ce209c4STrond Myklebust 			nfs_release_request(req);
10612ce209c4STrond Myklebust 			mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
10622ce209c4STrond Myklebust 			if (status < 0)
10632ce209c4STrond Myklebust 				break;
1064137da553STrond Myklebust 			goto restart;
10652ce209c4STrond Myklebust 		}
1066ea2cf228SFred Isaman 		nfs_request_remove_commit_list(req, cinfo);
10675d2a9d9dSTrond Myklebust 		clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
10688dd37758STrond Myklebust 		nfs_list_add_request(req, dst);
1069d6d6dc7cSFred Isaman 		ret++;
10701763da12SFred Isaman 		if ((ret == max) && !cinfo->dreq)
1071d6d6dc7cSFred Isaman 			break;
1072e824f99aSTrond Myklebust 		cond_resched();
1073d6d6dc7cSFred Isaman 	}
1074d6d6dc7cSFred Isaman 	return ret;
1075d6d6dc7cSFred Isaman }
10765d2a9d9dSTrond Myklebust EXPORT_SYMBOL_GPL(nfs_scan_commit_list);
1077d6d6dc7cSFred Isaman 
10781da177e4SLinus Torvalds /*
10791da177e4SLinus Torvalds  * nfs_scan_commit - Scan an inode for commit requests
10801da177e4SLinus Torvalds  * @inode: NFS inode to scan
1081ea2cf228SFred Isaman  * @dst: mds destination list
1082ea2cf228SFred Isaman  * @cinfo: mds and ds lists of reqs ready to commit
10831da177e4SLinus Torvalds  *
10841da177e4SLinus Torvalds  * Moves requests from the inode's 'commit' request list.
10851da177e4SLinus Torvalds  * The requests are *not* checked to ensure that they form a contiguous set.
10861da177e4SLinus Torvalds  */
10871763da12SFred Isaman int
1088ea2cf228SFred Isaman nfs_scan_commit(struct inode *inode, struct list_head *dst,
1089ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
10901da177e4SLinus Torvalds {
1091d6d6dc7cSFred Isaman 	int ret = 0;
1092fb8a1f11STrond Myklebust 
10935cb953d4STrond Myklebust 	if (!atomic_long_read(&cinfo->mds->ncommit))
10945cb953d4STrond Myklebust 		return 0;
1095e824f99aSTrond Myklebust 	mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
10965cb953d4STrond Myklebust 	if (atomic_long_read(&cinfo->mds->ncommit) > 0) {
10978dd37758STrond Myklebust 		const int max = INT_MAX;
1098d6d6dc7cSFred Isaman 
1099ea2cf228SFred Isaman 		ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1100ea2cf228SFred Isaman 					   cinfo, max);
1101ea2cf228SFred Isaman 		ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
1102d6d6dc7cSFred Isaman 	}
1103e824f99aSTrond Myklebust 	mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
1104ff778d02STrond Myklebust 	return ret;
11051da177e4SLinus Torvalds }
1106d6d6dc7cSFred Isaman 
11071da177e4SLinus Torvalds /*
1108e7d39069STrond Myklebust  * Search for an existing write request, and attempt to update
1109e7d39069STrond Myklebust  * it to reflect a new dirty region on a given page.
11101da177e4SLinus Torvalds  *
1111e7d39069STrond Myklebust  * If the attempt fails, then the existing request is flushed out
1112e7d39069STrond Myklebust  * to disk.
11131da177e4SLinus Torvalds  */
1114e7d39069STrond Myklebust static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
1115e7d39069STrond Myklebust 		struct page *page,
1116e7d39069STrond Myklebust 		unsigned int offset,
1117e7d39069STrond Myklebust 		unsigned int bytes)
11181da177e4SLinus Torvalds {
1119e7d39069STrond Myklebust 	struct nfs_page *req;
1120e7d39069STrond Myklebust 	unsigned int rqend;
1121e7d39069STrond Myklebust 	unsigned int end;
11221da177e4SLinus Torvalds 	int error;
1123277459d2STrond Myklebust 
1124e7d39069STrond Myklebust 	end = offset + bytes;
1125e7d39069STrond Myklebust 
1126f6032f21STrond Myklebust 	req = nfs_lock_and_join_requests(page);
1127f6032f21STrond Myklebust 	if (IS_ERR_OR_NULL(req))
1128f6032f21STrond Myklebust 		return req;
11292bfc6e56SWeston Andros Adamson 
1130e7d39069STrond Myklebust 	rqend = req->wb_offset + req->wb_bytes;
1131e7d39069STrond Myklebust 	/*
1132e7d39069STrond Myklebust 	 * Tell the caller to flush out the request if
1133e7d39069STrond Myklebust 	 * the offsets are non-contiguous.
1134e7d39069STrond Myklebust 	 * Note: nfs_flush_incompatible() will already
1135e7d39069STrond Myklebust 	 * have flushed out requests having wrong owners.
1136e7d39069STrond Myklebust 	 */
1137f6032f21STrond Myklebust 	if (offset > rqend || end < req->wb_offset)
1138e7d39069STrond Myklebust 		goto out_flushme;
1139e7d39069STrond Myklebust 
11401da177e4SLinus Torvalds 	/* Okay, the request matches. Update the region */
11411da177e4SLinus Torvalds 	if (offset < req->wb_offset) {
11421da177e4SLinus Torvalds 		req->wb_offset = offset;
11431da177e4SLinus Torvalds 		req->wb_pgbase = offset;
11441da177e4SLinus Torvalds 	}
11451da177e4SLinus Torvalds 	if (end > rqend)
11461da177e4SLinus Torvalds 		req->wb_bytes = end - req->wb_offset;
1147e7d39069STrond Myklebust 	else
1148e7d39069STrond Myklebust 		req->wb_bytes = rqend - req->wb_offset;
114933344e0fSTrond Myklebust 	req->wb_nio = 0;
1150e7d39069STrond Myklebust 	return req;
1151e7d39069STrond Myklebust out_flushme:
1152f6032f21STrond Myklebust 	/*
1153f6032f21STrond Myklebust 	 * Note: we mark the request dirty here because
1154f6032f21STrond Myklebust 	 * nfs_lock_and_join_requests() cannot preserve
1155f6032f21STrond Myklebust 	 * commit flags, so we have to replay the write.
1156f6032f21STrond Myklebust 	 */
1157f6032f21STrond Myklebust 	nfs_mark_request_dirty(req);
1158f6032f21STrond Myklebust 	nfs_unlock_and_release_request(req);
1159e7d39069STrond Myklebust 	error = nfs_wb_page(inode, page);
1160f6032f21STrond Myklebust 	return (error < 0) ? ERR_PTR(error) : NULL;
1161e7d39069STrond Myklebust }
11621da177e4SLinus Torvalds 
1163e7d39069STrond Myklebust /*
1164e7d39069STrond Myklebust  * Try to update an existing write request, or create one if there is none.
1165e7d39069STrond Myklebust  *
1166e7d39069STrond Myklebust  * Note: Should always be called with the Page Lock held to prevent races
1167e7d39069STrond Myklebust  * if we have to add a new request. Also assumes that the caller has
1168e7d39069STrond Myklebust  * already called nfs_flush_incompatible() if necessary.
1169e7d39069STrond Myklebust  */
1170e7d39069STrond Myklebust static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1171e7d39069STrond Myklebust 		struct page *page, unsigned int offset, unsigned int bytes)
1172e7d39069STrond Myklebust {
1173d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
1174e7d39069STrond Myklebust 	struct nfs_page	*req;
1175e7d39069STrond Myklebust 
1176e7d39069STrond Myklebust 	req = nfs_try_to_update_request(inode, page, offset, bytes);
1177e7d39069STrond Myklebust 	if (req != NULL)
1178e7d39069STrond Myklebust 		goto out;
117928b1d3f5STrond Myklebust 	req = nfs_create_request(ctx, page, offset, bytes);
1180e7d39069STrond Myklebust 	if (IS_ERR(req))
1181e7d39069STrond Myklebust 		goto out;
1182d6d6dc7cSFred Isaman 	nfs_inode_add_request(inode, req);
1183efc91ed0STrond Myklebust out:
118461e930a9STrond Myklebust 	return req;
11851da177e4SLinus Torvalds }
11861da177e4SLinus Torvalds 
1187e7d39069STrond Myklebust static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1188e7d39069STrond Myklebust 		unsigned int offset, unsigned int count)
1189e7d39069STrond Myklebust {
1190e7d39069STrond Myklebust 	struct nfs_page	*req;
1191e7d39069STrond Myklebust 
1192e7d39069STrond Myklebust 	req = nfs_setup_write_request(ctx, page, offset, count);
1193e7d39069STrond Myklebust 	if (IS_ERR(req))
1194e7d39069STrond Myklebust 		return PTR_ERR(req);
1195e7d39069STrond Myklebust 	/* Update file length */
1196e7d39069STrond Myklebust 	nfs_grow_file(page, offset, count);
1197d72ddcbaSWeston Andros Adamson 	nfs_mark_uptodate(req);
1198a6305ddbSTrond Myklebust 	nfs_mark_request_dirty(req);
11991d1afcbcSTrond Myklebust 	nfs_unlock_and_release_request(req);
1200e7d39069STrond Myklebust 	return 0;
1201e7d39069STrond Myklebust }
1202e7d39069STrond Myklebust 
12031da177e4SLinus Torvalds int nfs_flush_incompatible(struct file *file, struct page *page)
12041da177e4SLinus Torvalds {
1205cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
12062a369153STrond Myklebust 	struct nfs_lock_context *l_ctx;
1207bd61e0a9SJeff Layton 	struct file_lock_context *flctx = file_inode(file)->i_flctx;
12081da177e4SLinus Torvalds 	struct nfs_page	*req;
12091a54533eSTrond Myklebust 	int do_flush, status;
12101da177e4SLinus Torvalds 	/*
12111da177e4SLinus Torvalds 	 * Look for a request corresponding to this page. If there
12121da177e4SLinus Torvalds 	 * is one, and it belongs to another file, we flush it out
12131da177e4SLinus Torvalds 	 * before we try to copy anything into the page. Do this
12141da177e4SLinus Torvalds 	 * due to the lack of an ACCESS-type call in NFSv2.
12151da177e4SLinus Torvalds 	 * Also do the same if we find a request from an existing
12161da177e4SLinus Torvalds 	 * dropped page.
12171da177e4SLinus Torvalds 	 */
12181a54533eSTrond Myklebust 	do {
121984d3a9a9SWeston Andros Adamson 		req = nfs_page_find_head_request(page);
12201a54533eSTrond Myklebust 		if (req == NULL)
12211a54533eSTrond Myklebust 			return 0;
12222a369153STrond Myklebust 		l_ctx = req->wb_lock_context;
1223138a2935STrond Myklebust 		do_flush = req->wb_page != page ||
12249fcd5960STrond Myklebust 			!nfs_match_open_context(nfs_req_openctx(req), ctx);
1225bd61e0a9SJeff Layton 		if (l_ctx && flctx &&
1226bd61e0a9SJeff Layton 		    !(list_empty_careful(&flctx->flc_posix) &&
1227bd61e0a9SJeff Layton 		      list_empty_careful(&flctx->flc_flock))) {
1228d51fdb87SNeilBrown 			do_flush |= l_ctx->lockowner != current->files;
12295263e31eSJeff Layton 		}
12301da177e4SLinus Torvalds 		nfs_release_request(req);
12311a54533eSTrond Myklebust 		if (!do_flush)
12321a54533eSTrond Myklebust 			return 0;
1233d56b4ddfSMel Gorman 		status = nfs_wb_page(page_file_mapping(page)->host, page);
12341a54533eSTrond Myklebust 	} while (status == 0);
12351a54533eSTrond Myklebust 	return status;
12361da177e4SLinus Torvalds }
12371da177e4SLinus Torvalds 
12381da177e4SLinus Torvalds /*
1239dc24826bSAndy Adamson  * Avoid buffered writes when a open context credential's key would
1240dc24826bSAndy Adamson  * expire soon.
1241dc24826bSAndy Adamson  *
1242dc24826bSAndy Adamson  * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1243dc24826bSAndy Adamson  *
1244dc24826bSAndy Adamson  * Return 0 and set a credential flag which triggers the inode to flush
1245dc24826bSAndy Adamson  * and performs  NFS_FILE_SYNC writes if the key will expired within
1246dc24826bSAndy Adamson  * RPC_KEY_EXPIRE_TIMEO.
1247dc24826bSAndy Adamson  */
1248dc24826bSAndy Adamson int
1249dc24826bSAndy Adamson nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1250dc24826bSAndy Adamson {
1251dc24826bSAndy Adamson 	struct nfs_open_context *ctx = nfs_file_open_context(filp);
1252dc24826bSAndy Adamson 
1253ddf529eeSNeilBrown 	if (nfs_ctx_key_to_expire(ctx, inode) &&
1254ddf529eeSNeilBrown 	    !ctx->ll_cred)
1255ddf529eeSNeilBrown 		/* Already expired! */
1256ddf529eeSNeilBrown 		return -EACCES;
1257ddf529eeSNeilBrown 	return 0;
1258dc24826bSAndy Adamson }
1259dc24826bSAndy Adamson 
1260dc24826bSAndy Adamson /*
1261dc24826bSAndy Adamson  * Test if the open context credential key is marked to expire soon.
1262dc24826bSAndy Adamson  */
1263ce52914eSScott Mayhew bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
1264dc24826bSAndy Adamson {
1265ce52914eSScott Mayhew 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1266ddf529eeSNeilBrown 	struct rpc_cred *cred = ctx->ll_cred;
1267ddf529eeSNeilBrown 	struct auth_cred acred = {
1268a52458b4SNeilBrown 		.cred = ctx->cred,
1269ddf529eeSNeilBrown 	};
1270ce52914eSScott Mayhew 
1271ddf529eeSNeilBrown 	if (cred && !cred->cr_ops->crmatch(&acred, cred, 0)) {
1272ddf529eeSNeilBrown 		put_rpccred(cred);
1273ddf529eeSNeilBrown 		ctx->ll_cred = NULL;
1274ddf529eeSNeilBrown 		cred = NULL;
1275ddf529eeSNeilBrown 	}
1276ddf529eeSNeilBrown 	if (!cred)
1277ddf529eeSNeilBrown 		cred = auth->au_ops->lookup_cred(auth, &acred, 0);
1278ddf529eeSNeilBrown 	if (!cred || IS_ERR(cred))
1279ddf529eeSNeilBrown 		return true;
1280ddf529eeSNeilBrown 	ctx->ll_cred = cred;
1281ddf529eeSNeilBrown 	return !!(cred->cr_ops->crkey_timeout &&
1282ddf529eeSNeilBrown 		  cred->cr_ops->crkey_timeout(cred));
1283dc24826bSAndy Adamson }
1284dc24826bSAndy Adamson 
1285dc24826bSAndy Adamson /*
12865d47a356STrond Myklebust  * If the page cache is marked as unsafe or invalid, then we can't rely on
12875d47a356STrond Myklebust  * the PageUptodate() flag. In this case, we will need to turn off
12885d47a356STrond Myklebust  * write optimisations that depend on the page contents being correct.
12895d47a356STrond Myklebust  */
12908d197a56STrond Myklebust static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
12915d47a356STrond Myklebust {
1292d529ef83SJeff Layton 	struct nfs_inode *nfsi = NFS_I(inode);
1293d529ef83SJeff Layton 
12948d197a56STrond Myklebust 	if (nfs_have_delegated_attributes(inode))
12958d197a56STrond Myklebust 		goto out;
129618dd78c4SScott Mayhew 	if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1297d529ef83SJeff Layton 		return false;
12984db72b40SJeff Layton 	smp_rmb();
1299d529ef83SJeff Layton 	if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
13008d197a56STrond Myklebust 		return false;
13018d197a56STrond Myklebust out:
130218dd78c4SScott Mayhew 	if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
130318dd78c4SScott Mayhew 		return false;
13048d197a56STrond Myklebust 	return PageUptodate(page) != 0;
13055d47a356STrond Myklebust }
13065d47a356STrond Myklebust 
13075263e31eSJeff Layton static bool
13085263e31eSJeff Layton is_whole_file_wrlock(struct file_lock *fl)
13095263e31eSJeff Layton {
13105263e31eSJeff Layton 	return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
13115263e31eSJeff Layton 			fl->fl_type == F_WRLCK;
13125263e31eSJeff Layton }
13135263e31eSJeff Layton 
1314c7559663SScott Mayhew /* If we know the page is up to date, and we're not using byte range locks (or
1315c7559663SScott Mayhew  * if we have the whole file locked for writing), it may be more efficient to
1316c7559663SScott Mayhew  * extend the write to cover the entire page in order to avoid fragmentation
1317c7559663SScott Mayhew  * inefficiencies.
1318c7559663SScott Mayhew  *
1319263b4509SScott Mayhew  * If the file is opened for synchronous writes then we can just skip the rest
1320263b4509SScott Mayhew  * of the checks.
1321c7559663SScott Mayhew  */
1322c7559663SScott Mayhew static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1323c7559663SScott Mayhew {
13245263e31eSJeff Layton 	int ret;
13255263e31eSJeff Layton 	struct file_lock_context *flctx = inode->i_flctx;
13265263e31eSJeff Layton 	struct file_lock *fl;
13275263e31eSJeff Layton 
1328c7559663SScott Mayhew 	if (file->f_flags & O_DSYNC)
1329c7559663SScott Mayhew 		return 0;
1330263b4509SScott Mayhew 	if (!nfs_write_pageuptodate(page, inode))
1331263b4509SScott Mayhew 		return 0;
1332c7559663SScott Mayhew 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1333c7559663SScott Mayhew 		return 1;
1334bd61e0a9SJeff Layton 	if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1335bd61e0a9SJeff Layton 		       list_empty_careful(&flctx->flc_posix)))
13368fa4592aSTrond Myklebust 		return 1;
13375263e31eSJeff Layton 
13385263e31eSJeff Layton 	/* Check to see if there are whole file write locks */
13395263e31eSJeff Layton 	ret = 0;
13406109c850SJeff Layton 	spin_lock(&flctx->flc_lock);
1341bd61e0a9SJeff Layton 	if (!list_empty(&flctx->flc_posix)) {
1342bd61e0a9SJeff Layton 		fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1343bd61e0a9SJeff Layton 					fl_list);
1344bd61e0a9SJeff Layton 		if (is_whole_file_wrlock(fl))
13455263e31eSJeff Layton 			ret = 1;
1346bd61e0a9SJeff Layton 	} else if (!list_empty(&flctx->flc_flock)) {
13475263e31eSJeff Layton 		fl = list_first_entry(&flctx->flc_flock, struct file_lock,
13485263e31eSJeff Layton 					fl_list);
13495263e31eSJeff Layton 		if (fl->fl_type == F_WRLCK)
13505263e31eSJeff Layton 			ret = 1;
13515263e31eSJeff Layton 	}
13526109c850SJeff Layton 	spin_unlock(&flctx->flc_lock);
13535263e31eSJeff Layton 	return ret;
1354c7559663SScott Mayhew }
1355c7559663SScott Mayhew 
13565d47a356STrond Myklebust /*
13571da177e4SLinus Torvalds  * Update and possibly write a cached page of an NFS file.
13581da177e4SLinus Torvalds  *
13591da177e4SLinus Torvalds  * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
13601da177e4SLinus Torvalds  * things with a page scheduled for an RPC call (e.g. invalidate it).
13611da177e4SLinus Torvalds  */
13621da177e4SLinus Torvalds int nfs_updatepage(struct file *file, struct page *page,
13631da177e4SLinus Torvalds 		unsigned int offset, unsigned int count)
13641da177e4SLinus Torvalds {
1365cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
1366d2ceb7e5SBenjamin Coddington 	struct address_space *mapping = page_file_mapping(page);
1367d2ceb7e5SBenjamin Coddington 	struct inode	*inode = mapping->host;
13681da177e4SLinus Torvalds 	int		status = 0;
13691da177e4SLinus Torvalds 
137091d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
137191d5b470SChuck Lever 
13726de1472fSAl Viro 	dprintk("NFS:       nfs_updatepage(%pD2 %d@%lld)\n",
13736de1472fSAl Viro 		file, count, (long long)(page_file_offset(page) + offset));
13741da177e4SLinus Torvalds 
1375149a4fddSBenjamin Coddington 	if (!count)
1376149a4fddSBenjamin Coddington 		goto out;
1377149a4fddSBenjamin Coddington 
1378c7559663SScott Mayhew 	if (nfs_can_extend_write(file, page, inode)) {
137949a70f27STrond Myklebust 		count = max(count + offset, nfs_page_length(page));
13801da177e4SLinus Torvalds 		offset = 0;
13811da177e4SLinus Torvalds 	}
13821da177e4SLinus Torvalds 
1383e21195a7STrond Myklebust 	status = nfs_writepage_setup(ctx, page, offset, count);
138403fa9e84STrond Myklebust 	if (status < 0)
1385d2ceb7e5SBenjamin Coddington 		nfs_set_pageerror(mapping);
138659b7c05fSTrond Myklebust 	else
138759b7c05fSTrond Myklebust 		__set_page_dirty_nobuffers(page);
1388149a4fddSBenjamin Coddington out:
138948186c7dSChuck Lever 	dprintk("NFS:       nfs_updatepage returns %d (isize %lld)\n",
13901da177e4SLinus Torvalds 			status, (long long)i_size_read(inode));
13911da177e4SLinus Torvalds 	return status;
13921da177e4SLinus Torvalds }
13931da177e4SLinus Torvalds 
13943ff7576dSTrond Myklebust static int flush_task_priority(int how)
13951da177e4SLinus Torvalds {
13961da177e4SLinus Torvalds 	switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
13971da177e4SLinus Torvalds 		case FLUSH_HIGHPRI:
13981da177e4SLinus Torvalds 			return RPC_PRIORITY_HIGH;
13991da177e4SLinus Torvalds 		case FLUSH_LOWPRI:
14001da177e4SLinus Torvalds 			return RPC_PRIORITY_LOW;
14011da177e4SLinus Torvalds 	}
14021da177e4SLinus Torvalds 	return RPC_PRIORITY_NORMAL;
14031da177e4SLinus Torvalds }
14041da177e4SLinus Torvalds 
1405d45f60c6SWeston Andros Adamson static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1406d45f60c6SWeston Andros Adamson 			       struct rpc_message *msg,
1407abde71f4STom Haynes 			       const struct nfs_rpc_ops *rpc_ops,
14081ed26f33SAnna Schumaker 			       struct rpc_task_setup *task_setup_data, int how)
14091da177e4SLinus Torvalds {
14103ff7576dSTrond Myklebust 	int priority = flush_task_priority(how);
14111da177e4SLinus Torvalds 
14121ed26f33SAnna Schumaker 	task_setup_data->priority = priority;
1413fb91fb0eSAnna Schumaker 	rpc_ops->write_setup(hdr, msg, &task_setup_data->rpc_client);
14148224b273SChuck Lever 	trace_nfs_initiate_write(hdr->inode, hdr->io_start, hdr->good_bytes,
14158224b273SChuck Lever 				 hdr->args.stable);
1416275acaafSTrond Myklebust }
1417275acaafSTrond Myklebust 
14186d884e8fSFred /* If a nfs_flush_* function fails, it should remove reqs from @head and
14196d884e8fSFred  * call this on each, which will prepare them to be retried on next
14206d884e8fSFred  * writeback using standard nfs.
14216d884e8fSFred  */
14226d884e8fSFred static void nfs_redirty_request(struct nfs_page *req)
14236d884e8fSFred {
142433344e0fSTrond Myklebust 	/* Bump the transmission count */
142533344e0fSTrond Myklebust 	req->wb_nio++;
14266d884e8fSFred 	nfs_mark_request_dirty(req);
14279fcd5960STrond Myklebust 	set_bit(NFS_CONTEXT_RESEND_WRITES, &nfs_req_openctx(req)->flags);
142820633f04SWeston Andros Adamson 	nfs_end_page_writeback(req);
14293aff4ebbSTrond Myklebust 	nfs_release_request(req);
14306d884e8fSFred }
14316d884e8fSFred 
1432df3accb8STrond Myklebust static void nfs_async_write_error(struct list_head *head, int error)
14336c75dc0dSFred Isaman {
14346c75dc0dSFred Isaman 	struct nfs_page	*req;
14356c75dc0dSFred Isaman 
14366c75dc0dSFred Isaman 	while (!list_empty(head)) {
14376c75dc0dSFred Isaman 		req = nfs_list_entry(head->next);
14386c75dc0dSFred Isaman 		nfs_list_remove_request(req);
14396fbda89bSTrond Myklebust 		if (nfs_error_is_fatal(error))
14406fbda89bSTrond Myklebust 			nfs_write_error(req, error);
14416fbda89bSTrond Myklebust 		else
14426c75dc0dSFred Isaman 			nfs_redirty_request(req);
14436c75dc0dSFred Isaman 	}
14446c75dc0dSFred Isaman }
14456c75dc0dSFred Isaman 
1446dc602dd7STrond Myklebust static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1447dc602dd7STrond Myklebust {
1448df3accb8STrond Myklebust 	nfs_async_write_error(&hdr->pages, 0);
14497be7b3caSTrond Myklebust 	filemap_fdatawrite_range(hdr->inode->i_mapping, hdr->args.offset,
14507be7b3caSTrond Myklebust 			hdr->args.offset + hdr->args.count - 1);
1451dc602dd7STrond Myklebust }
1452dc602dd7STrond Myklebust 
1453061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1454919e3bd9STrond Myklebust 	.init_hdr = nfs_async_write_init,
1455061ae2edSFred Isaman 	.error_cleanup = nfs_async_write_error,
1456061ae2edSFred Isaman 	.completion = nfs_write_completion,
1457dc602dd7STrond Myklebust 	.reschedule_io = nfs_async_write_reschedule_io,
1458061ae2edSFred Isaman };
1459061ae2edSFred Isaman 
146057208fa7SBryan Schumaker void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1461a20c93e3SChristoph Hellwig 			       struct inode *inode, int ioflags, bool force_mds,
1462061ae2edSFred Isaman 			       const struct nfs_pgio_completion_ops *compl_ops)
14631751c363STrond Myklebust {
1464a20c93e3SChristoph Hellwig 	struct nfs_server *server = NFS_SERVER(inode);
146541d8d5b7SAnna Schumaker 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1466a20c93e3SChristoph Hellwig 
1467a20c93e3SChristoph Hellwig #ifdef CONFIG_NFS_V4_1
1468a20c93e3SChristoph Hellwig 	if (server->pnfs_curr_ld && !force_mds)
1469a20c93e3SChristoph Hellwig 		pg_ops = server->pnfs_curr_ld->pg_write_ops;
1470a20c93e3SChristoph Hellwig #endif
14714a0de55cSAnna Schumaker 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
14723bde7afdSTrond Myklebust 			server->wsize, ioflags);
14731751c363STrond Myklebust }
1474ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
14751751c363STrond Myklebust 
1476dce81290STrond Myklebust void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1477dce81290STrond Myklebust {
1478a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *mirror;
1479a7d42ddbSWeston Andros Adamson 
14806f29b9bbSKinglong Mee 	if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
14816f29b9bbSKinglong Mee 		pgio->pg_ops->pg_cleanup(pgio);
14826f29b9bbSKinglong Mee 
148341d8d5b7SAnna Schumaker 	pgio->pg_ops = &nfs_pgio_rw_ops;
1484a7d42ddbSWeston Andros Adamson 
1485a7d42ddbSWeston Andros Adamson 	nfs_pageio_stop_mirroring(pgio);
1486a7d42ddbSWeston Andros Adamson 
1487a7d42ddbSWeston Andros Adamson 	mirror = &pgio->pg_mirrors[0];
1488a7d42ddbSWeston Andros Adamson 	mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1489dce81290STrond Myklebust }
14901f945357STrond Myklebust EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1491dce81290STrond Myklebust 
14921da177e4SLinus Torvalds 
14930b7c0153SFred Isaman void nfs_commit_prepare(struct rpc_task *task, void *calldata)
14940b7c0153SFred Isaman {
14950b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
14960b7c0153SFred Isaman 
14970b7c0153SFred Isaman 	NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
14980b7c0153SFred Isaman }
14990b7c0153SFred Isaman 
15001f2edbe3STrond Myklebust /*
15011f2edbe3STrond Myklebust  * Special version of should_remove_suid() that ignores capabilities.
15021f2edbe3STrond Myklebust  */
15031f2edbe3STrond Myklebust static int nfs_should_remove_suid(const struct inode *inode)
15041f2edbe3STrond Myklebust {
15051f2edbe3STrond Myklebust 	umode_t mode = inode->i_mode;
15061f2edbe3STrond Myklebust 	int kill = 0;
1507788e7a89STrond Myklebust 
15081f2edbe3STrond Myklebust 	/* suid always must be killed */
15091f2edbe3STrond Myklebust 	if (unlikely(mode & S_ISUID))
15101f2edbe3STrond Myklebust 		kill = ATTR_KILL_SUID;
15111f2edbe3STrond Myklebust 
15121f2edbe3STrond Myklebust 	/*
15131f2edbe3STrond Myklebust 	 * sgid without any exec bits is just a mandatory locking mark; leave
15141f2edbe3STrond Myklebust 	 * it alone.  If some exec bits are set, it's a real sgid; kill it.
15151f2edbe3STrond Myklebust 	 */
15161f2edbe3STrond Myklebust 	if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
15171f2edbe3STrond Myklebust 		kill |= ATTR_KILL_SGID;
15181f2edbe3STrond Myklebust 
15191f2edbe3STrond Myklebust 	if (unlikely(kill && S_ISREG(mode)))
15201f2edbe3STrond Myklebust 		return kill;
15211f2edbe3STrond Myklebust 
15221f2edbe3STrond Myklebust 	return 0;
15231f2edbe3STrond Myklebust }
1524788e7a89STrond Myklebust 
1525a08a8cd3STrond Myklebust static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1526a08a8cd3STrond Myklebust 		struct nfs_fattr *fattr)
1527a08a8cd3STrond Myklebust {
1528a08a8cd3STrond Myklebust 	struct nfs_pgio_args *argp = &hdr->args;
1529a08a8cd3STrond Myklebust 	struct nfs_pgio_res *resp = &hdr->res;
15302b83d3deSTrond Myklebust 	u64 size = argp->offset + resp->count;
1531a08a8cd3STrond Myklebust 
1532a08a8cd3STrond Myklebust 	if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
15332b83d3deSTrond Myklebust 		fattr->size = size;
15342b83d3deSTrond Myklebust 	if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
15352b83d3deSTrond Myklebust 		fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
1536a08a8cd3STrond Myklebust 		return;
15372b83d3deSTrond Myklebust 	}
15382b83d3deSTrond Myklebust 	if (size != fattr->size)
1539a08a8cd3STrond Myklebust 		return;
1540a08a8cd3STrond Myklebust 	/* Set attribute barrier */
1541a08a8cd3STrond Myklebust 	nfs_fattr_set_barrier(fattr);
15422b83d3deSTrond Myklebust 	/* ...and update size */
15432b83d3deSTrond Myklebust 	fattr->valid |= NFS_ATTR_FATTR_SIZE;
1544a08a8cd3STrond Myklebust }
1545a08a8cd3STrond Myklebust 
1546a08a8cd3STrond Myklebust void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1547a08a8cd3STrond Myklebust {
15482b83d3deSTrond Myklebust 	struct nfs_fattr *fattr = &hdr->fattr;
1549a08a8cd3STrond Myklebust 	struct inode *inode = hdr->inode;
1550a08a8cd3STrond Myklebust 
1551a08a8cd3STrond Myklebust 	spin_lock(&inode->i_lock);
1552a08a8cd3STrond Myklebust 	nfs_writeback_check_extend(hdr, fattr);
1553a08a8cd3STrond Myklebust 	nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1554a08a8cd3STrond Myklebust 	spin_unlock(&inode->i_lock);
1555a08a8cd3STrond Myklebust }
1556a08a8cd3STrond Myklebust EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1557a08a8cd3STrond Myklebust 
15581da177e4SLinus Torvalds /*
15591da177e4SLinus Torvalds  * This function is called when the WRITE call is complete.
15601da177e4SLinus Torvalds  */
1561d45f60c6SWeston Andros Adamson static int nfs_writeback_done(struct rpc_task *task,
1562d45f60c6SWeston Andros Adamson 			      struct nfs_pgio_header *hdr,
15630eecb214SAnna Schumaker 			      struct inode *inode)
15641da177e4SLinus Torvalds {
1565788e7a89STrond Myklebust 	int status;
15661da177e4SLinus Torvalds 
1567f551e44fSChuck Lever 	/*
1568f551e44fSChuck Lever 	 * ->write_done will attempt to use post-op attributes to detect
1569f551e44fSChuck Lever 	 * conflicting writes by other clients.  A strict interpretation
1570f551e44fSChuck Lever 	 * of close-to-open would allow us to continue caching even if
1571f551e44fSChuck Lever 	 * another writer had changed the file, but some applications
1572f551e44fSChuck Lever 	 * depend on tighter cache coherency when writing.
1573f551e44fSChuck Lever 	 */
1574d45f60c6SWeston Andros Adamson 	status = NFS_PROTO(inode)->write_done(task, hdr);
1575788e7a89STrond Myklebust 	if (status != 0)
15760eecb214SAnna Schumaker 		return status;
15778224b273SChuck Lever 
1578d45f60c6SWeston Andros Adamson 	nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
15798224b273SChuck Lever 	trace_nfs_writeback_done(inode, task->tk_status,
15808224b273SChuck Lever 				 hdr->args.offset, hdr->res.verf);
158191d5b470SChuck Lever 
1582d45f60c6SWeston Andros Adamson 	if (hdr->res.verf->committed < hdr->args.stable &&
1583d45f60c6SWeston Andros Adamson 	    task->tk_status >= 0) {
15841da177e4SLinus Torvalds 		/* We tried a write call, but the server did not
15851da177e4SLinus Torvalds 		 * commit data to stable storage even though we
15861da177e4SLinus Torvalds 		 * requested it.
15871da177e4SLinus Torvalds 		 * Note: There is a known bug in Tru64 < 5.0 in which
15881da177e4SLinus Torvalds 		 *	 the server reports NFS_DATA_SYNC, but performs
15891da177e4SLinus Torvalds 		 *	 NFS_FILE_SYNC. We therefore implement this checking
15901da177e4SLinus Torvalds 		 *	 as a dprintk() in order to avoid filling syslog.
15911da177e4SLinus Torvalds 		 */
15921da177e4SLinus Torvalds 		static unsigned long    complain;
15931da177e4SLinus Torvalds 
1594a69aef14SFred Isaman 		/* Note this will print the MDS for a DS write */
15951da177e4SLinus Torvalds 		if (time_before(complain, jiffies)) {
15961da177e4SLinus Torvalds 			dprintk("NFS:       faulty NFS server %s:"
15971da177e4SLinus Torvalds 				" (committed = %d) != (stable = %d)\n",
1598cd841605SFred Isaman 				NFS_SERVER(inode)->nfs_client->cl_hostname,
1599d45f60c6SWeston Andros Adamson 				hdr->res.verf->committed, hdr->args.stable);
16001da177e4SLinus Torvalds 			complain = jiffies + 300 * HZ;
16011da177e4SLinus Torvalds 		}
16021da177e4SLinus Torvalds 	}
16031f2edbe3STrond Myklebust 
16041f2edbe3STrond Myklebust 	/* Deal with the suid/sgid bit corner case */
160516e14375STrond Myklebust 	if (nfs_should_remove_suid(inode)) {
160616e14375STrond Myklebust 		spin_lock(&inode->i_lock);
160716e14375STrond Myklebust 		NFS_I(inode)->cache_validity |= NFS_INO_INVALID_OTHER;
160816e14375STrond Myklebust 		spin_unlock(&inode->i_lock);
160916e14375STrond Myklebust 	}
16100eecb214SAnna Schumaker 	return 0;
16110eecb214SAnna Schumaker }
16120eecb214SAnna Schumaker 
16130eecb214SAnna Schumaker /*
16140eecb214SAnna Schumaker  * This function is called when the WRITE call is complete.
16150eecb214SAnna Schumaker  */
1616d45f60c6SWeston Andros Adamson static void nfs_writeback_result(struct rpc_task *task,
1617d45f60c6SWeston Andros Adamson 				 struct nfs_pgio_header *hdr)
16180eecb214SAnna Schumaker {
1619d45f60c6SWeston Andros Adamson 	struct nfs_pgio_args	*argp = &hdr->args;
1620d45f60c6SWeston Andros Adamson 	struct nfs_pgio_res	*resp = &hdr->res;
16211f2edbe3STrond Myklebust 
16221f2edbe3STrond Myklebust 	if (resp->count < argp->count) {
16231da177e4SLinus Torvalds 		static unsigned long    complain;
16241da177e4SLinus Torvalds 
16256c75dc0dSFred Isaman 		/* This a short write! */
1626d45f60c6SWeston Andros Adamson 		nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
162791d5b470SChuck Lever 
16281da177e4SLinus Torvalds 		/* Has the server at least made some progress? */
16296c75dc0dSFred Isaman 		if (resp->count == 0) {
16306c75dc0dSFred Isaman 			if (time_before(complain, jiffies)) {
16316c75dc0dSFred Isaman 				printk(KERN_WARNING
16326c75dc0dSFred Isaman 				       "NFS: Server wrote zero bytes, expected %u.\n",
16336c75dc0dSFred Isaman 				       argp->count);
16346c75dc0dSFred Isaman 				complain = jiffies + 300 * HZ;
16356c75dc0dSFred Isaman 			}
1636d45f60c6SWeston Andros Adamson 			nfs_set_pgio_error(hdr, -EIO, argp->offset);
16376c75dc0dSFred Isaman 			task->tk_status = -EIO;
16386c75dc0dSFred Isaman 			return;
16396c75dc0dSFred Isaman 		}
1640f8417b48SKinglong Mee 
1641f8417b48SKinglong Mee 		/* For non rpc-based layout drivers, retry-through-MDS */
1642f8417b48SKinglong Mee 		if (!task->tk_ops) {
1643f8417b48SKinglong Mee 			hdr->pnfs_error = -EAGAIN;
1644f8417b48SKinglong Mee 			return;
1645f8417b48SKinglong Mee 		}
1646f8417b48SKinglong Mee 
16471da177e4SLinus Torvalds 		/* Was this an NFSv2 write or an NFSv3 stable write? */
16481da177e4SLinus Torvalds 		if (resp->verf->committed != NFS_UNSTABLE) {
16491da177e4SLinus Torvalds 			/* Resend from where the server left off */
1650d45f60c6SWeston Andros Adamson 			hdr->mds_offset += resp->count;
16511da177e4SLinus Torvalds 			argp->offset += resp->count;
16521da177e4SLinus Torvalds 			argp->pgbase += resp->count;
16531da177e4SLinus Torvalds 			argp->count -= resp->count;
16541da177e4SLinus Torvalds 		} else {
16551da177e4SLinus Torvalds 			/* Resend as a stable write in order to avoid
16561da177e4SLinus Torvalds 			 * headaches in the case of a server crash.
16571da177e4SLinus Torvalds 			 */
16581da177e4SLinus Torvalds 			argp->stable = NFS_FILE_SYNC;
16591da177e4SLinus Torvalds 		}
1660d00c5d43STrond Myklebust 		rpc_restart_call_prepare(task);
16611da177e4SLinus Torvalds 	}
16621da177e4SLinus Torvalds }
16631da177e4SLinus Torvalds 
1664af7cf057STrond Myklebust static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
166571d0a611STrond Myklebust {
1666723c921eSPeter Zijlstra 	return wait_var_event_killable(&cinfo->rpcs_out,
1667723c921eSPeter Zijlstra 				       !atomic_read(&cinfo->rpcs_out));
1668af7cf057STrond Myklebust }
1669af7cf057STrond Myklebust 
1670af7cf057STrond Myklebust static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1671af7cf057STrond Myklebust {
1672af7cf057STrond Myklebust 	atomic_inc(&cinfo->rpcs_out);
1673af7cf057STrond Myklebust }
1674af7cf057STrond Myklebust 
1675af7cf057STrond Myklebust static void nfs_commit_end(struct nfs_mds_commit_info *cinfo)
1676af7cf057STrond Myklebust {
1677af7cf057STrond Myklebust 	if (atomic_dec_and_test(&cinfo->rpcs_out))
1678723c921eSPeter Zijlstra 		wake_up_var(&cinfo->rpcs_out);
167971d0a611STrond Myklebust }
168071d0a611STrond Myklebust 
16810b7c0153SFred Isaman void nfs_commitdata_release(struct nfs_commit_data *data)
16821da177e4SLinus Torvalds {
16830b7c0153SFred Isaman 	put_nfs_open_context(data->context);
16840b7c0153SFred Isaman 	nfs_commit_free(data);
16851da177e4SLinus Torvalds }
1686e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_release);
16871da177e4SLinus Torvalds 
16880b7c0153SFred Isaman int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1689c36aae9aSPeng Tao 			const struct nfs_rpc_ops *nfs_ops,
16909ace33cdSFred Isaman 			const struct rpc_call_ops *call_ops,
16919f0ec176SAndy Adamson 			int how, int flags)
16921da177e4SLinus Torvalds {
169307737691STrond Myklebust 	struct rpc_task *task;
16949ace33cdSFred Isaman 	int priority = flush_task_priority(how);
1695bdc7f021STrond Myklebust 	struct rpc_message msg = {
1696bdc7f021STrond Myklebust 		.rpc_argp = &data->args,
1697bdc7f021STrond Myklebust 		.rpc_resp = &data->res,
16989ace33cdSFred Isaman 		.rpc_cred = data->cred,
1699bdc7f021STrond Myklebust 	};
170084115e1cSTrond Myklebust 	struct rpc_task_setup task_setup_data = {
170107737691STrond Myklebust 		.task = &data->task,
17029ace33cdSFred Isaman 		.rpc_client = clnt,
1703bdc7f021STrond Myklebust 		.rpc_message = &msg,
17049ace33cdSFred Isaman 		.callback_ops = call_ops,
170584115e1cSTrond Myklebust 		.callback_data = data,
1706101070caSTrond Myklebust 		.workqueue = nfsiod_workqueue,
17079f0ec176SAndy Adamson 		.flags = RPC_TASK_ASYNC | flags,
17083ff7576dSTrond Myklebust 		.priority = priority,
170984115e1cSTrond Myklebust 	};
1710788e7a89STrond Myklebust 	/* Set up the initial task struct.  */
1711e9ae1ee2SAnna Schumaker 	nfs_ops->commit_setup(data, &msg, &task_setup_data.rpc_client);
17128224b273SChuck Lever 	trace_nfs_initiate_commit(data);
17131da177e4SLinus Torvalds 
1714b4839ebeSKinglong Mee 	dprintk("NFS: initiated commit call\n");
1715bdc7f021STrond Myklebust 
171607737691STrond Myklebust 	task = rpc_run_task(&task_setup_data);
1717dbae4c73STrond Myklebust 	if (IS_ERR(task))
1718dbae4c73STrond Myklebust 		return PTR_ERR(task);
1719d2224e7aSJeff Layton 	if (how & FLUSH_SYNC)
1720d2224e7aSJeff Layton 		rpc_wait_for_completion_task(task);
172107737691STrond Myklebust 	rpc_put_task(task);
1722dbae4c73STrond Myklebust 	return 0;
17231da177e4SLinus Torvalds }
1724e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_initiate_commit);
17251da177e4SLinus Torvalds 
1726378520b8SPeng Tao static loff_t nfs_get_lwb(struct list_head *head)
1727378520b8SPeng Tao {
1728378520b8SPeng Tao 	loff_t lwb = 0;
1729378520b8SPeng Tao 	struct nfs_page *req;
1730378520b8SPeng Tao 
1731378520b8SPeng Tao 	list_for_each_entry(req, head, wb_list)
1732378520b8SPeng Tao 		if (lwb < (req_offset(req) + req->wb_bytes))
1733378520b8SPeng Tao 			lwb = req_offset(req) + req->wb_bytes;
1734378520b8SPeng Tao 
1735378520b8SPeng Tao 	return lwb;
1736378520b8SPeng Tao }
1737378520b8SPeng Tao 
17381da177e4SLinus Torvalds /*
17399ace33cdSFred Isaman  * Set up the argument/result storage required for the RPC call.
17409ace33cdSFred Isaman  */
17410b7c0153SFred Isaman void nfs_init_commit(struct nfs_commit_data *data,
1742988b6dceSFred Isaman 		     struct list_head *head,
1743f453a54aSFred Isaman 		     struct pnfs_layout_segment *lseg,
1744f453a54aSFred Isaman 		     struct nfs_commit_info *cinfo)
17459ace33cdSFred Isaman {
17469ace33cdSFred Isaman 	struct nfs_page *first = nfs_list_entry(head->next);
17479fcd5960STrond Myklebust 	struct nfs_open_context *ctx = nfs_req_openctx(first);
17489fcd5960STrond Myklebust 	struct inode *inode = d_inode(ctx->dentry);
17499ace33cdSFred Isaman 
17509ace33cdSFred Isaman 	/* Set up the RPC argument and reply structs
17519ace33cdSFred Isaman 	 * NB: take care not to mess about with data->commit et al. */
17529ace33cdSFred Isaman 
17539ace33cdSFred Isaman 	list_splice_init(head, &data->pages);
17549ace33cdSFred Isaman 
17559ace33cdSFred Isaman 	data->inode	  = inode;
17569fcd5960STrond Myklebust 	data->cred	  = ctx->cred;
1757988b6dceSFred Isaman 	data->lseg	  = lseg; /* reference transferred */
1758378520b8SPeng Tao 	/* only set lwb for pnfs commit */
1759378520b8SPeng Tao 	if (lseg)
1760378520b8SPeng Tao 		data->lwb = nfs_get_lwb(&data->pages);
17619ace33cdSFred Isaman 	data->mds_ops     = &nfs_commit_ops;
1762f453a54aSFred Isaman 	data->completion_ops = cinfo->completion_ops;
1763b359f9d0SFred Isaman 	data->dreq	  = cinfo->dreq;
17649ace33cdSFred Isaman 
17659ace33cdSFred Isaman 	data->args.fh     = NFS_FH(data->inode);
17669ace33cdSFred Isaman 	/* Note: we always request a commit of the entire inode */
17679ace33cdSFred Isaman 	data->args.offset = 0;
17689ace33cdSFred Isaman 	data->args.count  = 0;
17699fcd5960STrond Myklebust 	data->context     = get_nfs_open_context(ctx);
17709ace33cdSFred Isaman 	data->res.fattr   = &data->fattr;
17719ace33cdSFred Isaman 	data->res.verf    = &data->verf;
17729ace33cdSFred Isaman 	nfs_fattr_init(&data->fattr);
17739ace33cdSFred Isaman }
1774e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_commit);
17759ace33cdSFred Isaman 
1776e0c2b380SFred Isaman void nfs_retry_commit(struct list_head *page_list,
1777ea2cf228SFred Isaman 		      struct pnfs_layout_segment *lseg,
1778b57ff130SWeston Andros Adamson 		      struct nfs_commit_info *cinfo,
1779b57ff130SWeston Andros Adamson 		      u32 ds_commit_idx)
178064bfeb49SFred Isaman {
178164bfeb49SFred Isaman 	struct nfs_page *req;
178264bfeb49SFred Isaman 
178364bfeb49SFred Isaman 	while (!list_empty(page_list)) {
178464bfeb49SFred Isaman 		req = nfs_list_entry(page_list->next);
178564bfeb49SFred Isaman 		nfs_list_remove_request(req);
1786b57ff130SWeston Andros Adamson 		nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
1787487b9b8aSTom Haynes 		if (!cinfo->dreq)
1788487b9b8aSTom Haynes 			nfs_clear_page_commit(req->wb_page);
17891d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
179064bfeb49SFred Isaman 	}
179164bfeb49SFred Isaman }
1792e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_retry_commit);
179364bfeb49SFred Isaman 
1794b20135d0STrond Myklebust static void
1795b20135d0STrond Myklebust nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1796b20135d0STrond Myklebust 		struct nfs_page *req)
1797b20135d0STrond Myklebust {
1798b20135d0STrond Myklebust 	__set_page_dirty_nobuffers(req->wb_page);
1799b20135d0STrond Myklebust }
1800b20135d0STrond Myklebust 
18019ace33cdSFred Isaman /*
18021da177e4SLinus Torvalds  * Commit dirty pages
18031da177e4SLinus Torvalds  */
18041da177e4SLinus Torvalds static int
1805ea2cf228SFred Isaman nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1806ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
18071da177e4SLinus Torvalds {
18080b7c0153SFred Isaman 	struct nfs_commit_data	*data;
18091da177e4SLinus Torvalds 
1810ade8febdSWeston Andros Adamson 	/* another commit raced with us */
1811ade8febdSWeston Andros Adamson 	if (list_empty(head))
1812ade8febdSWeston Andros Adamson 		return 0;
1813ade8febdSWeston Andros Adamson 
1814518662e0SNeilBrown 	data = nfs_commitdata_alloc(true);
18151da177e4SLinus Torvalds 
18161da177e4SLinus Torvalds 	/* Set up the argument struct */
1817f453a54aSFred Isaman 	nfs_init_commit(data, head, NULL, cinfo);
1818f453a54aSFred Isaman 	atomic_inc(&cinfo->mds->rpcs_out);
1819c36aae9aSPeng Tao 	return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
1820c36aae9aSPeng Tao 				   data->mds_ops, how, 0);
18211da177e4SLinus Torvalds }
18221da177e4SLinus Torvalds 
18231da177e4SLinus Torvalds /*
18241da177e4SLinus Torvalds  * COMMIT call returned
18251da177e4SLinus Torvalds  */
1826788e7a89STrond Myklebust static void nfs_commit_done(struct rpc_task *task, void *calldata)
18271da177e4SLinus Torvalds {
18280b7c0153SFred Isaman 	struct nfs_commit_data	*data = calldata;
18291da177e4SLinus Torvalds 
1830a3f565b1SChuck Lever         dprintk("NFS: %5u nfs_commit_done (status %d)\n",
18311da177e4SLinus Torvalds                                 task->tk_pid, task->tk_status);
18321da177e4SLinus Torvalds 
1833788e7a89STrond Myklebust 	/* Call the NFS version-specific code */
1834c0d0e96bSTrond Myklebust 	NFS_PROTO(data->inode)->commit_done(task, data);
18358224b273SChuck Lever 	trace_nfs_commit_done(data);
1836c9d8f89dSTrond Myklebust }
1837c9d8f89dSTrond Myklebust 
1838f453a54aSFred Isaman static void nfs_commit_release_pages(struct nfs_commit_data *data)
1839c9d8f89dSTrond Myklebust {
1840c9d8f89dSTrond Myklebust 	struct nfs_page	*req;
1841c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1842f453a54aSFred Isaman 	struct nfs_commit_info cinfo;
1843353db796SNeilBrown 	struct nfs_server *nfss;
1844788e7a89STrond Myklebust 
18451da177e4SLinus Torvalds 	while (!list_empty(&data->pages)) {
18461da177e4SLinus Torvalds 		req = nfs_list_entry(data->pages.next);
18471da177e4SLinus Torvalds 		nfs_list_remove_request(req);
184867911c8fSAnna Schumaker 		if (req->wb_page)
1849d6d6dc7cSFred Isaman 			nfs_clear_page_commit(req->wb_page);
18501da177e4SLinus Torvalds 
18511e8968c5SNiels de Vos 		dprintk("NFS:       commit (%s/%llu %d@%lld)",
18529fcd5960STrond Myklebust 			nfs_req_openctx(req)->dentry->d_sb->s_id,
18539fcd5960STrond Myklebust 			(unsigned long long)NFS_FILEID(d_inode(nfs_req_openctx(req)->dentry)),
18541da177e4SLinus Torvalds 			req->wb_bytes,
18551da177e4SLinus Torvalds 			(long long)req_offset(req));
1856c9d8f89dSTrond Myklebust 		if (status < 0) {
18576fbda89bSTrond Myklebust 			if (req->wb_page) {
18586fbda89bSTrond Myklebust 				nfs_mapping_set_error(req->wb_page, status);
18591da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
18606fbda89bSTrond Myklebust 			}
1861ddeaa637SJoe Perches 			dprintk_cont(", error = %d\n", status);
18621da177e4SLinus Torvalds 			goto next;
18631da177e4SLinus Torvalds 		}
18641da177e4SLinus Torvalds 
18651da177e4SLinus Torvalds 		/* Okay, COMMIT succeeded, apparently. Check the verifier
18661da177e4SLinus Torvalds 		 * returned by the server against all stored verfs. */
18678fc3c386STrond Myklebust 		if (!nfs_write_verifier_cmp(&req->wb_verf, &data->verf.verifier)) {
18681da177e4SLinus Torvalds 			/* We have a match */
186938a33101SKinglong Mee 			if (req->wb_page)
18701da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
1871ddeaa637SJoe Perches 			dprintk_cont(" OK\n");
18721da177e4SLinus Torvalds 			goto next;
18731da177e4SLinus Torvalds 		}
18741da177e4SLinus Torvalds 		/* We have a mismatch. Write the page again */
1875ddeaa637SJoe Perches 		dprintk_cont(" mismatch\n");
18766d884e8fSFred 		nfs_mark_request_dirty(req);
18779fcd5960STrond Myklebust 		set_bit(NFS_CONTEXT_RESEND_WRITES, &nfs_req_openctx(req)->flags);
18781da177e4SLinus Torvalds 	next:
18791d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
18807f1bda44STrond Myklebust 		/* Latency breaker */
18817f1bda44STrond Myklebust 		cond_resched();
18821da177e4SLinus Torvalds 	}
1883353db796SNeilBrown 	nfss = NFS_SERVER(data->inode);
1884353db796SNeilBrown 	if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
18850db10944SJan Kara 		clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC);
1886353db796SNeilBrown 
1887f453a54aSFred Isaman 	nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1888af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
18895917ce84SFred Isaman }
18905917ce84SFred Isaman 
18915917ce84SFred Isaman static void nfs_commit_release(void *calldata)
18925917ce84SFred Isaman {
18930b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
18945917ce84SFred Isaman 
1895f453a54aSFred Isaman 	data->completion_ops->completion(data);
1896c9d8f89dSTrond Myklebust 	nfs_commitdata_release(calldata);
18971da177e4SLinus Torvalds }
1898788e7a89STrond Myklebust 
1899788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops = {
19000b7c0153SFred Isaman 	.rpc_call_prepare = nfs_commit_prepare,
1901788e7a89STrond Myklebust 	.rpc_call_done = nfs_commit_done,
1902788e7a89STrond Myklebust 	.rpc_release = nfs_commit_release,
1903788e7a89STrond Myklebust };
19041da177e4SLinus Torvalds 
1905f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1906f453a54aSFred Isaman 	.completion = nfs_commit_release_pages,
1907b20135d0STrond Myklebust 	.resched_write = nfs_commit_resched_write,
1908f453a54aSFred Isaman };
1909f453a54aSFred Isaman 
19101763da12SFred Isaman int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1911ea2cf228SFred Isaman 			    int how, struct nfs_commit_info *cinfo)
191284c53ab5SFred Isaman {
191384c53ab5SFred Isaman 	int status;
191484c53ab5SFred Isaman 
1915ea2cf228SFred Isaman 	status = pnfs_commit_list(inode, head, how, cinfo);
191684c53ab5SFred Isaman 	if (status == PNFS_NOT_ATTEMPTED)
1917ea2cf228SFred Isaman 		status = nfs_commit_list(inode, head, how, cinfo);
191884c53ab5SFred Isaman 	return status;
191984c53ab5SFred Isaman }
192084c53ab5SFred Isaman 
1921c4f24df9STrond Myklebust static int __nfs_commit_inode(struct inode *inode, int how,
1922c4f24df9STrond Myklebust 		struct writeback_control *wbc)
19231da177e4SLinus Torvalds {
19241da177e4SLinus Torvalds 	LIST_HEAD(head);
1925ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
192671d0a611STrond Myklebust 	int may_wait = how & FLUSH_SYNC;
1927c4f24df9STrond Myklebust 	int ret, nscan;
19281da177e4SLinus Torvalds 
1929ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, inode);
1930af7cf057STrond Myklebust 	nfs_commit_begin(cinfo.mds);
1931c4f24df9STrond Myklebust 	for (;;) {
1932c4f24df9STrond Myklebust 		ret = nscan = nfs_scan_commit(inode, &head, &cinfo);
1933c4f24df9STrond Myklebust 		if (ret <= 0)
1934c4f24df9STrond Myklebust 			break;
1935c4f24df9STrond Myklebust 		ret = nfs_generic_commit_list(inode, &head, how, &cinfo);
1936c4f24df9STrond Myklebust 		if (ret < 0)
1937c4f24df9STrond Myklebust 			break;
1938c4f24df9STrond Myklebust 		ret = 0;
1939c4f24df9STrond Myklebust 		if (wbc && wbc->sync_mode == WB_SYNC_NONE) {
1940c4f24df9STrond Myklebust 			if (nscan < wbc->nr_to_write)
1941c4f24df9STrond Myklebust 				wbc->nr_to_write -= nscan;
1942c4f24df9STrond Myklebust 			else
1943c4f24df9STrond Myklebust 				wbc->nr_to_write = 0;
1944c4f24df9STrond Myklebust 		}
1945c4f24df9STrond Myklebust 		if (nscan < INT_MAX)
1946c4f24df9STrond Myklebust 			break;
1947c4f24df9STrond Myklebust 		cond_resched();
1948c4f24df9STrond Myklebust 	}
1949af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
1950c4f24df9STrond Myklebust 	if (ret || !may_wait)
1951c4f24df9STrond Myklebust 		return ret;
1952c4f24df9STrond Myklebust 	return wait_on_commit(cinfo.mds);
1953c4f24df9STrond Myklebust }
1954c4f24df9STrond Myklebust 
1955c4f24df9STrond Myklebust int nfs_commit_inode(struct inode *inode, int how)
1956c4f24df9STrond Myklebust {
1957c4f24df9STrond Myklebust 	return __nfs_commit_inode(inode, how, NULL);
19581da177e4SLinus Torvalds }
1959b20135d0STrond Myklebust EXPORT_SYMBOL_GPL(nfs_commit_inode);
19608fc795f7STrond Myklebust 
1961ae09c31fSAnna Schumaker int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
19628fc795f7STrond Myklebust {
1963420e3646STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
1964420e3646STrond Myklebust 	int flags = FLUSH_SYNC;
1965420e3646STrond Myklebust 	int ret = 0;
19668fc795f7STrond Myklebust 
1967c4f24df9STrond Myklebust 	if (wbc->sync_mode == WB_SYNC_NONE) {
19683236c3e1SJeff Layton 		/* no commits means nothing needs to be done */
19695cb953d4STrond Myklebust 		if (!atomic_long_read(&nfsi->commit_info.ncommit))
1970c4f24df9STrond Myklebust 			goto check_requests_outstanding;
19713236c3e1SJeff Layton 
1972a00dd6c0SJeff Layton 		/* Don't commit yet if this is a non-blocking flush and there
1973a00dd6c0SJeff Layton 		 * are a lot of outstanding writes for this mapping.
1974420e3646STrond Myklebust 		 */
19751a4edf0fSTrond Myklebust 		if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1976420e3646STrond Myklebust 			goto out_mark_dirty;
1977420e3646STrond Myklebust 
1978a00dd6c0SJeff Layton 		/* don't wait for the COMMIT response */
1979420e3646STrond Myklebust 		flags = 0;
1980a00dd6c0SJeff Layton 	}
1981a00dd6c0SJeff Layton 
1982c4f24df9STrond Myklebust 	ret = __nfs_commit_inode(inode, flags, wbc);
1983c4f24df9STrond Myklebust 	if (!ret) {
1984c4f24df9STrond Myklebust 		if (flags & FLUSH_SYNC)
19858fc795f7STrond Myklebust 			return 0;
1986c4f24df9STrond Myklebust 	} else if (atomic_long_read(&nfsi->commit_info.ncommit))
1987c4f24df9STrond Myklebust 		goto out_mark_dirty;
1988c4f24df9STrond Myklebust 
1989c4f24df9STrond Myklebust check_requests_outstanding:
1990c4f24df9STrond Myklebust 	if (!atomic_read(&nfsi->commit_info.rpcs_out))
1991c4f24df9STrond Myklebust 		return ret;
1992420e3646STrond Myklebust out_mark_dirty:
19938fc795f7STrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
19948fc795f7STrond Myklebust 	return ret;
19958fc795f7STrond Myklebust }
199689d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_write_inode);
1997863a3c6cSAndy Adamson 
1998acdc53b2STrond Myklebust /*
1999837bb1d7STrond Myklebust  * Wrapper for filemap_write_and_wait_range()
2000837bb1d7STrond Myklebust  *
2001837bb1d7STrond Myklebust  * Needed for pNFS in order to ensure data becomes visible to the
2002837bb1d7STrond Myklebust  * client.
2003837bb1d7STrond Myklebust  */
2004837bb1d7STrond Myklebust int nfs_filemap_write_and_wait_range(struct address_space *mapping,
2005837bb1d7STrond Myklebust 		loff_t lstart, loff_t lend)
2006837bb1d7STrond Myklebust {
2007837bb1d7STrond Myklebust 	int ret;
2008837bb1d7STrond Myklebust 
2009837bb1d7STrond Myklebust 	ret = filemap_write_and_wait_range(mapping, lstart, lend);
2010837bb1d7STrond Myklebust 	if (ret == 0)
2011837bb1d7STrond Myklebust 		ret = pnfs_sync_inode(mapping->host, true);
2012837bb1d7STrond Myklebust 	return ret;
2013837bb1d7STrond Myklebust }
2014837bb1d7STrond Myklebust EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
2015837bb1d7STrond Myklebust 
2016837bb1d7STrond Myklebust /*
2017acdc53b2STrond Myklebust  * flush the inode to disk.
2018acdc53b2STrond Myklebust  */
2019acdc53b2STrond Myklebust int nfs_wb_all(struct inode *inode)
202034901f70STrond Myklebust {
2021f4ce1299STrond Myklebust 	int ret;
202234901f70STrond Myklebust 
2023f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_enter(inode);
2024f4ce1299STrond Myklebust 
20255bb89b47STrond Myklebust 	ret = filemap_write_and_wait(inode->i_mapping);
20266b196875SChuck Lever 	if (ret)
20276b196875SChuck Lever 		goto out;
20285bb89b47STrond Myklebust 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
20296b196875SChuck Lever 	if (ret < 0)
20306b196875SChuck Lever 		goto out;
20315bb89b47STrond Myklebust 	pnfs_sync_inode(inode, true);
20326b196875SChuck Lever 	ret = 0;
2033f4ce1299STrond Myklebust 
20346b196875SChuck Lever out:
2035f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_exit(inode, ret);
2036f4ce1299STrond Myklebust 	return ret;
20371c75950bSTrond Myklebust }
2038ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_wb_all);
20391c75950bSTrond Myklebust 
20401b3b4a1aSTrond Myklebust int nfs_wb_page_cancel(struct inode *inode, struct page *page)
20411b3b4a1aSTrond Myklebust {
20421b3b4a1aSTrond Myklebust 	struct nfs_page *req;
20431b3b4a1aSTrond Myklebust 	int ret = 0;
20441b3b4a1aSTrond Myklebust 
2045ba8b06e6STrond Myklebust 	wait_on_page_writeback(page);
20463e217045SWeston Andros Adamson 
20473e217045SWeston Andros Adamson 	/* blocking call to cancel all requests and join to a single (head)
20483e217045SWeston Andros Adamson 	 * request */
20496d17d653STrond Myklebust 	req = nfs_lock_and_join_requests(page);
20503e217045SWeston Andros Adamson 
20513e217045SWeston Andros Adamson 	if (IS_ERR(req)) {
20523e217045SWeston Andros Adamson 		ret = PTR_ERR(req);
20533e217045SWeston Andros Adamson 	} else if (req) {
20543e217045SWeston Andros Adamson 		/* all requests from this page have been cancelled by
20553e217045SWeston Andros Adamson 		 * nfs_lock_and_join_requests, so just remove the head
20563e217045SWeston Andros Adamson 		 * request from the inode / page_private pointer and
20573e217045SWeston Andros Adamson 		 * release it */
20581b3b4a1aSTrond Myklebust 		nfs_inode_remove_request(req);
20591d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
20601b3b4a1aSTrond Myklebust 	}
20613e217045SWeston Andros Adamson 
20621b3b4a1aSTrond Myklebust 	return ret;
20631b3b4a1aSTrond Myklebust }
20641b3b4a1aSTrond Myklebust 
20651c75950bSTrond Myklebust /*
20661c75950bSTrond Myklebust  * Write back all requests on one page - we do this before reading it.
20671c75950bSTrond Myklebust  */
2068c373fff7STrond Myklebust int nfs_wb_page(struct inode *inode, struct page *page)
20691c75950bSTrond Myklebust {
207029418aa4SMel Gorman 	loff_t range_start = page_file_offset(page);
207109cbfeafSKirill A. Shutemov 	loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
20727f2f12d9STrond Myklebust 	struct writeback_control wbc = {
20737f2f12d9STrond Myklebust 		.sync_mode = WB_SYNC_ALL,
20747f2f12d9STrond Myklebust 		.nr_to_write = 0,
20757f2f12d9STrond Myklebust 		.range_start = range_start,
20767f2f12d9STrond Myklebust 		.range_end = range_end,
20777f2f12d9STrond Myklebust 	};
20787f2f12d9STrond Myklebust 	int ret;
20797f2f12d9STrond Myklebust 
2080f4ce1299STrond Myklebust 	trace_nfs_writeback_page_enter(inode);
2081f4ce1299STrond Myklebust 
20820522f6adSTrond Myklebust 	for (;;) {
2083ba8b06e6STrond Myklebust 		wait_on_page_writeback(page);
20847f2f12d9STrond Myklebust 		if (clear_page_dirty_for_io(page)) {
2085c373fff7STrond Myklebust 			ret = nfs_writepage_locked(page, &wbc);
20867f2f12d9STrond Myklebust 			if (ret < 0)
20877f2f12d9STrond Myklebust 				goto out_error;
20880522f6adSTrond Myklebust 			continue;
20897f2f12d9STrond Myklebust 		}
2090f4ce1299STrond Myklebust 		ret = 0;
20910522f6adSTrond Myklebust 		if (!PagePrivate(page))
20920522f6adSTrond Myklebust 			break;
20930522f6adSTrond Myklebust 		ret = nfs_commit_inode(inode, FLUSH_SYNC);
20947f2f12d9STrond Myklebust 		if (ret < 0)
20957f2f12d9STrond Myklebust 			goto out_error;
20967f2f12d9STrond Myklebust 	}
20977f2f12d9STrond Myklebust out_error:
2098f4ce1299STrond Myklebust 	trace_nfs_writeback_page_exit(inode, ret);
20997f2f12d9STrond Myklebust 	return ret;
21001c75950bSTrond Myklebust }
21011c75950bSTrond Myklebust 
2102074cc1deSTrond Myklebust #ifdef CONFIG_MIGRATION
2103074cc1deSTrond Myklebust int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
2104a6bc32b8SMel Gorman 		struct page *page, enum migrate_mode mode)
2105074cc1deSTrond Myklebust {
21062da95652SJeff Layton 	/*
21072da95652SJeff Layton 	 * If PagePrivate is set, then the page is currently associated with
21082da95652SJeff Layton 	 * an in-progress read or write request. Don't try to migrate it.
21092da95652SJeff Layton 	 *
21102da95652SJeff Layton 	 * FIXME: we could do this in principle, but we'll need a way to ensure
21112da95652SJeff Layton 	 *        that we can safely release the inode reference while holding
21122da95652SJeff Layton 	 *        the page lock.
21132da95652SJeff Layton 	 */
21142da95652SJeff Layton 	if (PagePrivate(page))
21152da95652SJeff Layton 		return -EBUSY;
2116074cc1deSTrond Myklebust 
21178c209ce7SDavid Howells 	if (!nfs_fscache_release_page(page, GFP_KERNEL))
21188c209ce7SDavid Howells 		return -EBUSY;
2119074cc1deSTrond Myklebust 
2120a6bc32b8SMel Gorman 	return migrate_page(mapping, newpage, page, mode);
2121074cc1deSTrond Myklebust }
2122074cc1deSTrond Myklebust #endif
2123074cc1deSTrond Myklebust 
2124f7b422b1SDavid Howells int __init nfs_init_writepagecache(void)
21251da177e4SLinus Torvalds {
21261da177e4SLinus Torvalds 	nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
21271e7f3a48SWeston Andros Adamson 					     sizeof(struct nfs_pgio_header),
21281da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
212920c2df83SPaul Mundt 					     NULL);
21301da177e4SLinus Torvalds 	if (nfs_wdata_cachep == NULL)
21311da177e4SLinus Torvalds 		return -ENOMEM;
21321da177e4SLinus Torvalds 
213393d2341cSMatthew Dobson 	nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
21341da177e4SLinus Torvalds 						     nfs_wdata_cachep);
21351da177e4SLinus Torvalds 	if (nfs_wdata_mempool == NULL)
21363dd4765fSJeff Layton 		goto out_destroy_write_cache;
21371da177e4SLinus Torvalds 
21380b7c0153SFred Isaman 	nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
21390b7c0153SFred Isaman 					     sizeof(struct nfs_commit_data),
21400b7c0153SFred Isaman 					     0, SLAB_HWCACHE_ALIGN,
21410b7c0153SFred Isaman 					     NULL);
21420b7c0153SFred Isaman 	if (nfs_cdata_cachep == NULL)
21433dd4765fSJeff Layton 		goto out_destroy_write_mempool;
21440b7c0153SFred Isaman 
214593d2341cSMatthew Dobson 	nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
21464c100210SYanchuan Nian 						      nfs_cdata_cachep);
21471da177e4SLinus Torvalds 	if (nfs_commit_mempool == NULL)
21483dd4765fSJeff Layton 		goto out_destroy_commit_cache;
21491da177e4SLinus Torvalds 
215089a09141SPeter Zijlstra 	/*
215189a09141SPeter Zijlstra 	 * NFS congestion size, scale with available memory.
215289a09141SPeter Zijlstra 	 *
215389a09141SPeter Zijlstra 	 *  64MB:    8192k
215489a09141SPeter Zijlstra 	 * 128MB:   11585k
215589a09141SPeter Zijlstra 	 * 256MB:   16384k
215689a09141SPeter Zijlstra 	 * 512MB:   23170k
215789a09141SPeter Zijlstra 	 *   1GB:   32768k
215889a09141SPeter Zijlstra 	 *   2GB:   46340k
215989a09141SPeter Zijlstra 	 *   4GB:   65536k
216089a09141SPeter Zijlstra 	 *   8GB:   92681k
216189a09141SPeter Zijlstra 	 *  16GB:  131072k
216289a09141SPeter Zijlstra 	 *
216389a09141SPeter Zijlstra 	 * This allows larger machines to have larger/more transfers.
216489a09141SPeter Zijlstra 	 * Limit the default to 256M
216589a09141SPeter Zijlstra 	 */
2166ca79b0c2SArun KS 	nfs_congestion_kb = (16*int_sqrt(totalram_pages())) << (PAGE_SHIFT-10);
216789a09141SPeter Zijlstra 	if (nfs_congestion_kb > 256*1024)
216889a09141SPeter Zijlstra 		nfs_congestion_kb = 256*1024;
216989a09141SPeter Zijlstra 
21701da177e4SLinus Torvalds 	return 0;
21713dd4765fSJeff Layton 
21723dd4765fSJeff Layton out_destroy_commit_cache:
21733dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
21743dd4765fSJeff Layton out_destroy_write_mempool:
21753dd4765fSJeff Layton 	mempool_destroy(nfs_wdata_mempool);
21763dd4765fSJeff Layton out_destroy_write_cache:
21773dd4765fSJeff Layton 	kmem_cache_destroy(nfs_wdata_cachep);
21783dd4765fSJeff Layton 	return -ENOMEM;
21791da177e4SLinus Torvalds }
21801da177e4SLinus Torvalds 
2181266bee88SDavid Brownell void nfs_destroy_writepagecache(void)
21821da177e4SLinus Torvalds {
21831da177e4SLinus Torvalds 	mempool_destroy(nfs_commit_mempool);
21843dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
21851da177e4SLinus Torvalds 	mempool_destroy(nfs_wdata_mempool);
21861a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_wdata_cachep);
21871da177e4SLinus Torvalds }
21881da177e4SLinus Torvalds 
21894a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops = {
21904a0de55cSAnna Schumaker 	.rw_alloc_header	= nfs_writehdr_alloc,
21914a0de55cSAnna Schumaker 	.rw_free_header		= nfs_writehdr_free,
21920eecb214SAnna Schumaker 	.rw_done		= nfs_writeback_done,
21930eecb214SAnna Schumaker 	.rw_result		= nfs_writeback_result,
21941ed26f33SAnna Schumaker 	.rw_initiate		= nfs_initiate_write,
21954a0de55cSAnna Schumaker };
2196