xref: /openbmc/linux/fs/nfs/write.c (revision e25447c3)
1457c8996SThomas 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>
285970e15dSJeff Layton #include <linux/filelock.h>
293fcfab16SAndrew Morton 
307c0f6ba6SLinus Torvalds #include <linux/uaccess.h>
31875bc3fbSTrond Myklebust #include <linux/sched/mm.h>
321da177e4SLinus Torvalds 
331da177e4SLinus Torvalds #include "delegation.h"
3449a70f27STrond Myklebust #include "internal.h"
3591d5b470SChuck Lever #include "iostat.h"
36def6ed7eSAndy Adamson #include "nfs4_fs.h"
37074cc1deSTrond Myklebust #include "fscache.h"
3894ad1c80SFred Isaman #include "pnfs.h"
391da177e4SLinus Torvalds 
40f4ce1299STrond Myklebust #include "nfstrace.h"
41f4ce1299STrond Myklebust 
421da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
431da177e4SLinus Torvalds 
441da177e4SLinus Torvalds #define MIN_POOL_WRITE		(32)
451da177e4SLinus Torvalds #define MIN_POOL_COMMIT		(4)
461da177e4SLinus Torvalds 
47919e3bd9STrond Myklebust struct nfs_io_completion {
48919e3bd9STrond Myklebust 	void (*complete)(void *data);
49919e3bd9STrond Myklebust 	void *data;
50919e3bd9STrond Myklebust 	struct kref refcount;
51919e3bd9STrond Myklebust };
52919e3bd9STrond Myklebust 
531da177e4SLinus Torvalds /*
541da177e4SLinus Torvalds  * Local function declarations
551da177e4SLinus Torvalds  */
56f8512ad0SFred Isaman static void nfs_redirty_request(struct nfs_page *req);
57788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops;
58061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
59f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
604a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops;
6106c9fdf3STrond Myklebust static void nfs_inode_remove_request(struct nfs_page *req);
62b193a78dSTrond Myklebust static void nfs_clear_request_commit(struct nfs_commit_info *cinfo,
63b193a78dSTrond Myklebust 				     struct nfs_page *req);
6402d1426cSWeston Andros Adamson static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
6502d1426cSWeston Andros Adamson 				      struct inode *inode);
663a3908c8STrond Myklebust static struct nfs_page *
673a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
680c493b5cSTrond Myklebust 						struct folio *folio);
691da177e4SLinus Torvalds 
70e18b890bSChristoph Lameter static struct kmem_cache *nfs_wdata_cachep;
713feb2d49STrond Myklebust static mempool_t *nfs_wdata_mempool;
720b7c0153SFred Isaman static struct kmem_cache *nfs_cdata_cachep;
731da177e4SLinus Torvalds static mempool_t *nfs_commit_mempool;
741da177e4SLinus Torvalds 
nfs_commitdata_alloc(void)75515dcdcdSTrond Myklebust struct nfs_commit_data *nfs_commitdata_alloc(void)
761da177e4SLinus Torvalds {
77518662e0SNeilBrown 	struct nfs_commit_data *p;
7840859d7eSChuck Lever 
79515dcdcdSTrond Myklebust 	p = kmem_cache_zalloc(nfs_cdata_cachep, nfs_io_gfp_mask());
80515dcdcdSTrond Myklebust 	if (!p) {
81518662e0SNeilBrown 		p = mempool_alloc(nfs_commit_mempool, GFP_NOWAIT);
82518662e0SNeilBrown 		if (!p)
83518662e0SNeilBrown 			return NULL;
841da177e4SLinus Torvalds 		memset(p, 0, sizeof(*p));
85515dcdcdSTrond Myklebust 	}
861da177e4SLinus Torvalds 	INIT_LIST_HEAD(&p->pages);
871da177e4SLinus Torvalds 	return p;
881da177e4SLinus Torvalds }
89e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
901da177e4SLinus Torvalds 
nfs_commit_free(struct nfs_commit_data * p)910b7c0153SFred Isaman void nfs_commit_free(struct nfs_commit_data *p)
921da177e4SLinus Torvalds {
931da177e4SLinus Torvalds 	mempool_free(p, nfs_commit_mempool);
941da177e4SLinus Torvalds }
95e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commit_free);
961da177e4SLinus Torvalds 
nfs_writehdr_alloc(void)971e7f3a48SWeston Andros Adamson static struct nfs_pgio_header *nfs_writehdr_alloc(void)
983feb2d49STrond Myklebust {
990bae835bSTrond Myklebust 	struct nfs_pgio_header *p;
1003feb2d49STrond Myklebust 
1010bae835bSTrond Myklebust 	p = kmem_cache_zalloc(nfs_wdata_cachep, nfs_io_gfp_mask());
1020bae835bSTrond Myklebust 	if (!p) {
1030bae835bSTrond Myklebust 		p = mempool_alloc(nfs_wdata_mempool, GFP_NOWAIT);
1040bae835bSTrond Myklebust 		if (!p)
1050bae835bSTrond Myklebust 			return NULL;
1063feb2d49STrond Myklebust 		memset(p, 0, sizeof(*p));
1070bae835bSTrond Myklebust 	}
108fbe77c30SBenjamin Coddington 	p->rw_mode = FMODE_WRITE;
1093feb2d49STrond Myklebust 	return p;
1103feb2d49STrond Myklebust }
1113feb2d49STrond Myklebust 
nfs_writehdr_free(struct nfs_pgio_header * hdr)1121e7f3a48SWeston Andros Adamson static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
1136c75dc0dSFred Isaman {
1141e7f3a48SWeston Andros Adamson 	mempool_free(hdr, nfs_wdata_mempool);
1153feb2d49STrond Myklebust }
1161da177e4SLinus Torvalds 
nfs_io_completion_alloc(gfp_t gfp_flags)117919e3bd9STrond Myklebust static struct nfs_io_completion *nfs_io_completion_alloc(gfp_t gfp_flags)
118919e3bd9STrond Myklebust {
119919e3bd9STrond Myklebust 	return kmalloc(sizeof(struct nfs_io_completion), gfp_flags);
120919e3bd9STrond Myklebust }
121919e3bd9STrond Myklebust 
nfs_io_completion_init(struct nfs_io_completion * ioc,void (* complete)(void *),void * data)122919e3bd9STrond Myklebust static void nfs_io_completion_init(struct nfs_io_completion *ioc,
123919e3bd9STrond Myklebust 		void (*complete)(void *), void *data)
124919e3bd9STrond Myklebust {
125919e3bd9STrond Myklebust 	ioc->complete = complete;
126919e3bd9STrond Myklebust 	ioc->data = data;
127919e3bd9STrond Myklebust 	kref_init(&ioc->refcount);
128919e3bd9STrond Myklebust }
129919e3bd9STrond Myklebust 
nfs_io_completion_release(struct kref * kref)130919e3bd9STrond Myklebust static void nfs_io_completion_release(struct kref *kref)
131919e3bd9STrond Myklebust {
132919e3bd9STrond Myklebust 	struct nfs_io_completion *ioc = container_of(kref,
133919e3bd9STrond Myklebust 			struct nfs_io_completion, refcount);
134919e3bd9STrond Myklebust 	ioc->complete(ioc->data);
135919e3bd9STrond Myklebust 	kfree(ioc);
136919e3bd9STrond Myklebust }
137919e3bd9STrond Myklebust 
nfs_io_completion_get(struct nfs_io_completion * ioc)138919e3bd9STrond Myklebust static void nfs_io_completion_get(struct nfs_io_completion *ioc)
139919e3bd9STrond Myklebust {
140919e3bd9STrond Myklebust 	if (ioc != NULL)
141919e3bd9STrond Myklebust 		kref_get(&ioc->refcount);
142919e3bd9STrond Myklebust }
143919e3bd9STrond Myklebust 
nfs_io_completion_put(struct nfs_io_completion * ioc)144919e3bd9STrond Myklebust static void nfs_io_completion_put(struct nfs_io_completion *ioc)
145919e3bd9STrond Myklebust {
146919e3bd9STrond Myklebust 	if (ioc != NULL)
147919e3bd9STrond Myklebust 		kref_put(&ioc->refcount, nfs_io_completion_release);
148919e3bd9STrond Myklebust }
149919e3bd9STrond Myklebust 
150e00ed89dSTrond Myklebust static void
nfs_page_set_inode_ref(struct nfs_page * req,struct inode * inode)151e00ed89dSTrond Myklebust nfs_page_set_inode_ref(struct nfs_page *req, struct inode *inode)
152e00ed89dSTrond Myklebust {
153e00ed89dSTrond Myklebust 	if (!test_and_set_bit(PG_INODE_REF, &req->wb_flags)) {
154e00ed89dSTrond Myklebust 		kref_get(&req->wb_kref);
155e00ed89dSTrond Myklebust 		atomic_long_inc(&NFS_I(inode)->nrequests);
156e00ed89dSTrond Myklebust 	}
157e00ed89dSTrond Myklebust }
158e00ed89dSTrond Myklebust 
159e00ed89dSTrond Myklebust static int
nfs_cancel_remove_inode(struct nfs_page * req,struct inode * inode)160e00ed89dSTrond Myklebust nfs_cancel_remove_inode(struct nfs_page *req, struct inode *inode)
161e00ed89dSTrond Myklebust {
162e00ed89dSTrond Myklebust 	int ret;
163e00ed89dSTrond Myklebust 
164e00ed89dSTrond Myklebust 	if (!test_bit(PG_REMOVE, &req->wb_flags))
165e00ed89dSTrond Myklebust 		return 0;
166e00ed89dSTrond Myklebust 	ret = nfs_page_group_lock(req);
167e00ed89dSTrond Myklebust 	if (ret)
168e00ed89dSTrond Myklebust 		return ret;
169e00ed89dSTrond Myklebust 	if (test_and_clear_bit(PG_REMOVE, &req->wb_flags))
170e00ed89dSTrond Myklebust 		nfs_page_set_inode_ref(req, inode);
171e00ed89dSTrond Myklebust 	nfs_page_group_unlock(req);
172e00ed89dSTrond Myklebust 	return 0;
173e00ed89dSTrond Myklebust }
174e00ed89dSTrond Myklebust 
nfs_folio_private_request(struct folio * folio)1750c493b5cSTrond Myklebust static struct nfs_page *nfs_folio_private_request(struct folio *folio)
176bd37d6fcSTrond Myklebust {
1770c493b5cSTrond Myklebust 	return folio_get_private(folio);
178bd37d6fcSTrond Myklebust }
179bd37d6fcSTrond Myklebust 
1800c493b5cSTrond Myklebust /**
1810c493b5cSTrond Myklebust  * nfs_folio_find_private_request - find head request associated with a folio
1820c493b5cSTrond Myklebust  * @folio: pointer to folio
18384d3a9a9SWeston Andros Adamson  *
18484d3a9a9SWeston Andros Adamson  * must be called while holding the inode lock.
18584d3a9a9SWeston Andros Adamson  *
18684d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
18784d3a9a9SWeston Andros Adamson  */
nfs_folio_find_private_request(struct folio * folio)1880c493b5cSTrond Myklebust static struct nfs_page *nfs_folio_find_private_request(struct folio *folio)
189277459d2STrond Myklebust {
1900c493b5cSTrond Myklebust 	struct address_space *mapping = folio_file_mapping(folio);
191bd37d6fcSTrond Myklebust 	struct nfs_page *req;
192277459d2STrond Myklebust 
1930c493b5cSTrond Myklebust 	if (!folio_test_private(folio))
194b30d2f04STrond Myklebust 		return NULL;
1954b9bb25bSTrond Myklebust 	spin_lock(&mapping->private_lock);
1960c493b5cSTrond Myklebust 	req = nfs_folio_private_request(folio);
19784d3a9a9SWeston Andros Adamson 	if (req) {
19884d3a9a9SWeston Andros Adamson 		WARN_ON_ONCE(req->wb_head != req);
19929418aa4SMel Gorman 		kref_get(&req->wb_kref);
20084d3a9a9SWeston Andros Adamson 	}
2014b9bb25bSTrond Myklebust 	spin_unlock(&mapping->private_lock);
202b30d2f04STrond Myklebust 	return req;
203b30d2f04STrond Myklebust }
20429418aa4SMel Gorman 
nfs_folio_find_swap_request(struct folio * folio)2050c493b5cSTrond Myklebust static struct nfs_page *nfs_folio_find_swap_request(struct folio *folio)
206b30d2f04STrond Myklebust {
2070c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
208b30d2f04STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
209b30d2f04STrond Myklebust 	struct nfs_page *req = NULL;
2100c493b5cSTrond Myklebust 	if (!folio_test_swapcache(folio))
211b30d2f04STrond Myklebust 		return NULL;
212e824f99aSTrond Myklebust 	mutex_lock(&nfsi->commit_mutex);
2130c493b5cSTrond Myklebust 	if (folio_test_swapcache(folio)) {
214b30d2f04STrond Myklebust 		req = nfs_page_search_commits_for_head_request_locked(nfsi,
2150c493b5cSTrond Myklebust 								      folio);
216b30d2f04STrond Myklebust 		if (req) {
217b30d2f04STrond Myklebust 			WARN_ON_ONCE(req->wb_head != req);
218b30d2f04STrond Myklebust 			kref_get(&req->wb_kref);
219b30d2f04STrond Myklebust 		}
220b30d2f04STrond Myklebust 	}
221e824f99aSTrond Myklebust 	mutex_unlock(&nfsi->commit_mutex);
222277459d2STrond Myklebust 	return req;
223277459d2STrond Myklebust }
224277459d2STrond Myklebust 
2250c493b5cSTrond Myklebust /**
2260c493b5cSTrond Myklebust  * nfs_folio_find_head_request - find head request associated with a folio
2270c493b5cSTrond Myklebust  * @folio: pointer to folio
22884d3a9a9SWeston Andros Adamson  *
22984d3a9a9SWeston Andros Adamson  * returns matching head request with reference held, or NULL if not found.
23084d3a9a9SWeston Andros Adamson  */
nfs_folio_find_head_request(struct folio * folio)2310c493b5cSTrond Myklebust static struct nfs_page *nfs_folio_find_head_request(struct folio *folio)
232277459d2STrond Myklebust {
233b30d2f04STrond Myklebust 	struct nfs_page *req;
234277459d2STrond Myklebust 
2350c493b5cSTrond Myklebust 	req = nfs_folio_find_private_request(folio);
236b30d2f04STrond Myklebust 	if (!req)
2370c493b5cSTrond Myklebust 		req = nfs_folio_find_swap_request(folio);
238277459d2STrond Myklebust 	return req;
239277459d2STrond Myklebust }
240277459d2STrond Myklebust 
nfs_folio_find_and_lock_request(struct folio * folio)2410c493b5cSTrond Myklebust static struct nfs_page *nfs_folio_find_and_lock_request(struct folio *folio)
242e00ed89dSTrond Myklebust {
2430c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
244e00ed89dSTrond Myklebust 	struct nfs_page *req, *head;
245e00ed89dSTrond Myklebust 	int ret;
246e00ed89dSTrond Myklebust 
247e00ed89dSTrond Myklebust 	for (;;) {
2480c493b5cSTrond Myklebust 		req = nfs_folio_find_head_request(folio);
249e00ed89dSTrond Myklebust 		if (!req)
250e00ed89dSTrond Myklebust 			return req;
251e00ed89dSTrond Myklebust 		head = nfs_page_group_lock_head(req);
252e00ed89dSTrond Myklebust 		if (head != req)
253e00ed89dSTrond Myklebust 			nfs_release_request(req);
254e00ed89dSTrond Myklebust 		if (IS_ERR(head))
255e00ed89dSTrond Myklebust 			return head;
256e00ed89dSTrond Myklebust 		ret = nfs_cancel_remove_inode(head, inode);
257e00ed89dSTrond Myklebust 		if (ret < 0) {
258e00ed89dSTrond Myklebust 			nfs_unlock_and_release_request(head);
259e00ed89dSTrond Myklebust 			return ERR_PTR(ret);
260e00ed89dSTrond Myklebust 		}
261e00ed89dSTrond Myklebust 		/* Ensure that nobody removed the request before we locked it */
2620c493b5cSTrond Myklebust 		if (head == nfs_folio_private_request(folio))
263e00ed89dSTrond Myklebust 			break;
2640c493b5cSTrond Myklebust 		if (folio_test_swapcache(folio))
265e00ed89dSTrond Myklebust 			break;
266e00ed89dSTrond Myklebust 		nfs_unlock_and_release_request(head);
267e00ed89dSTrond Myklebust 	}
268e00ed89dSTrond Myklebust 	return head;
269e00ed89dSTrond Myklebust }
270e00ed89dSTrond Myklebust 
2711da177e4SLinus Torvalds /* Adjust the file length if we're writing beyond the end */
nfs_grow_file(struct folio * folio,unsigned int offset,unsigned int count)2720c493b5cSTrond Myklebust static void nfs_grow_file(struct folio *folio, unsigned int offset,
2730c493b5cSTrond Myklebust 			  unsigned int count)
2741da177e4SLinus Torvalds {
2750c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
276a3d01454STrond Myklebust 	loff_t end, i_size;
277a3d01454STrond Myklebust 	pgoff_t end_index;
2781da177e4SLinus Torvalds 
279a3d01454STrond Myklebust 	spin_lock(&inode->i_lock);
280a3d01454STrond Myklebust 	i_size = i_size_read(inode);
2810c493b5cSTrond Myklebust 	end_index = ((i_size - 1) >> folio_shift(folio)) << folio_order(folio);
2820c493b5cSTrond Myklebust 	if (i_size > 0 && folio_index(folio) < end_index)
283a3d01454STrond Myklebust 		goto out;
2840c493b5cSTrond Myklebust 	end = folio_file_pos(folio) + (loff_t)offset + (loff_t)count;
2851da177e4SLinus Torvalds 	if (i_size >= end)
286a3d01454STrond Myklebust 		goto out;
287110cb2d2SChuck Lever 	trace_nfs_size_grow(inode, end);
2881da177e4SLinus Torvalds 	i_size_write(inode, end);
289f6cdfa6dSTrond Myklebust 	NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_SIZE;
290a3d01454STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
291a3d01454STrond Myklebust out:
292a3d01454STrond Myklebust 	spin_unlock(&inode->i_lock);
293a6b5a28eSDave Wysochanski 	nfs_fscache_invalidate(inode, 0);
2941da177e4SLinus Torvalds }
2951da177e4SLinus Torvalds 
296a301b777STrond Myklebust /* A writeback failed: mark the page as bad, and invalidate the page cache */
nfs_set_pageerror(struct address_space * mapping)297d2ceb7e5SBenjamin Coddington static void nfs_set_pageerror(struct address_space *mapping)
298a301b777STrond Myklebust {
2990df68cedSTrond Myklebust 	struct inode *inode = mapping->host;
3000df68cedSTrond Myklebust 
301d2ceb7e5SBenjamin Coddington 	nfs_zap_mapping(mapping->host, mapping);
3020df68cedSTrond Myklebust 	/* Force file size revalidation */
3030df68cedSTrond Myklebust 	spin_lock(&inode->i_lock);
304ac46b3d7STrond Myklebust 	nfs_set_cache_invalid(inode, NFS_INO_REVAL_FORCED |
30588a6099fSTrond Myklebust 					     NFS_INO_INVALID_CHANGE |
306ac46b3d7STrond Myklebust 					     NFS_INO_INVALID_SIZE);
3070df68cedSTrond Myklebust 	spin_unlock(&inode->i_lock);
308a301b777STrond Myklebust }
309a301b777STrond Myklebust 
nfs_mapping_set_error(struct folio * folio,int error)3100c493b5cSTrond Myklebust static void nfs_mapping_set_error(struct folio *folio, int error)
3116fbda89bSTrond Myklebust {
3120c493b5cSTrond Myklebust 	struct address_space *mapping = folio_file_mapping(folio);
313b8946d7bSTrond Myklebust 
3140c493b5cSTrond Myklebust 	folio_set_error(folio);
3156c984083STrond Myklebust 	filemap_set_wb_err(mapping, error);
3166c984083STrond Myklebust 	if (mapping->host)
3176c984083STrond Myklebust 		errseq_set(&mapping->host->i_sb->s_wb_err,
3186c984083STrond Myklebust 			   error == -ENOSPC ? -ENOSPC : -EIO);
319b8946d7bSTrond Myklebust 	nfs_set_pageerror(mapping);
3206fbda89bSTrond Myklebust }
3216fbda89bSTrond Myklebust 
322d72ddcbaSWeston Andros Adamson /*
323d72ddcbaSWeston Andros Adamson  * nfs_page_group_search_locked
324d72ddcbaSWeston Andros Adamson  * @head - head request of page group
325d72ddcbaSWeston Andros Adamson  * @page_offset - offset into page
326d72ddcbaSWeston Andros Adamson  *
327d72ddcbaSWeston Andros Adamson  * Search page group with head @head to find a request that contains the
328d72ddcbaSWeston Andros Adamson  * page offset @page_offset.
329d72ddcbaSWeston Andros Adamson  *
330d72ddcbaSWeston Andros Adamson  * Returns a pointer to the first matching nfs request, or NULL if no
331d72ddcbaSWeston Andros Adamson  * match is found.
332d72ddcbaSWeston Andros Adamson  *
333d72ddcbaSWeston Andros Adamson  * Must be called with the page group lock held
334d72ddcbaSWeston Andros Adamson  */
335d72ddcbaSWeston Andros Adamson static struct nfs_page *
nfs_page_group_search_locked(struct nfs_page * head,unsigned int page_offset)336d72ddcbaSWeston Andros Adamson nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
337d72ddcbaSWeston Andros Adamson {
338d72ddcbaSWeston Andros Adamson 	struct nfs_page *req;
339d72ddcbaSWeston Andros Adamson 
340d72ddcbaSWeston Andros Adamson 	req = head;
341d72ddcbaSWeston Andros Adamson 	do {
342d72ddcbaSWeston Andros Adamson 		if (page_offset >= req->wb_pgbase &&
343d72ddcbaSWeston Andros Adamson 		    page_offset < (req->wb_pgbase + req->wb_bytes))
344d72ddcbaSWeston Andros Adamson 			return req;
345d72ddcbaSWeston Andros Adamson 
346d72ddcbaSWeston Andros Adamson 		req = req->wb_this_page;
347d72ddcbaSWeston Andros Adamson 	} while (req != head);
348d72ddcbaSWeston Andros Adamson 
349d72ddcbaSWeston Andros Adamson 	return NULL;
350d72ddcbaSWeston Andros Adamson }
351d72ddcbaSWeston Andros Adamson 
352d72ddcbaSWeston Andros Adamson /*
353d72ddcbaSWeston Andros Adamson  * nfs_page_group_covers_page
354d72ddcbaSWeston Andros Adamson  * @head - head request of page group
355d72ddcbaSWeston Andros Adamson  *
356d72ddcbaSWeston Andros Adamson  * Return true if the page group with head @head covers the whole page,
357d72ddcbaSWeston Andros Adamson  * returns false otherwise
358d72ddcbaSWeston Andros Adamson  */
nfs_page_group_covers_page(struct nfs_page * req)359d72ddcbaSWeston Andros Adamson static bool nfs_page_group_covers_page(struct nfs_page *req)
360d72ddcbaSWeston Andros Adamson {
3610c493b5cSTrond Myklebust 	unsigned int len = nfs_folio_length(nfs_page_to_folio(req));
362d72ddcbaSWeston Andros Adamson 	struct nfs_page *tmp;
363d72ddcbaSWeston Andros Adamson 	unsigned int pos = 0;
364d72ddcbaSWeston Andros Adamson 
3651344b7eaSTrond Myklebust 	nfs_page_group_lock(req);
366d72ddcbaSWeston Andros Adamson 
3677e8a30f8STrond Myklebust 	for (;;) {
368d72ddcbaSWeston Andros Adamson 		tmp = nfs_page_group_search_locked(req->wb_head, pos);
3697e8a30f8STrond Myklebust 		if (!tmp)
3707e8a30f8STrond Myklebust 			break;
3717e8a30f8STrond Myklebust 		pos = tmp->wb_pgbase + tmp->wb_bytes;
372d72ddcbaSWeston Andros Adamson 	}
373d72ddcbaSWeston Andros Adamson 
374d72ddcbaSWeston Andros Adamson 	nfs_page_group_unlock(req);
3757e8a30f8STrond Myklebust 	return pos >= len;
376d72ddcbaSWeston Andros Adamson }
377d72ddcbaSWeston Andros Adamson 
3781da177e4SLinus Torvalds /* We can set the PG_uptodate flag if we see that a write request
3791da177e4SLinus Torvalds  * covers the full page.
3801da177e4SLinus Torvalds  */
nfs_mark_uptodate(struct nfs_page * req)381d72ddcbaSWeston Andros Adamson static void nfs_mark_uptodate(struct nfs_page *req)
3821da177e4SLinus Torvalds {
3830c493b5cSTrond Myklebust 	struct folio *folio = nfs_page_to_folio(req);
3840c493b5cSTrond Myklebust 
3850c493b5cSTrond Myklebust 	if (folio_test_uptodate(folio))
3861da177e4SLinus Torvalds 		return;
387d72ddcbaSWeston Andros Adamson 	if (!nfs_page_group_covers_page(req))
3881da177e4SLinus Torvalds 		return;
3890c493b5cSTrond Myklebust 	folio_mark_uptodate(folio);
3901da177e4SLinus Torvalds }
3911da177e4SLinus Torvalds 
wb_priority(struct writeback_control * wbc)3921da177e4SLinus Torvalds static int wb_priority(struct writeback_control *wbc)
3931da177e4SLinus Torvalds {
394e87b4c7aSNeilBrown 	int ret = 0;
395cca588d6STrond Myklebust 
396e87b4c7aSNeilBrown 	if (wbc->sync_mode == WB_SYNC_ALL)
397e87b4c7aSNeilBrown 		ret = FLUSH_COND_STABLE;
398e87b4c7aSNeilBrown 	return ret;
3991da177e4SLinus Torvalds }
4001da177e4SLinus Torvalds 
4011da177e4SLinus Torvalds /*
40289a09141SPeter Zijlstra  * NFS congestion control
40389a09141SPeter Zijlstra  */
40489a09141SPeter Zijlstra 
40589a09141SPeter Zijlstra int nfs_congestion_kb;
40689a09141SPeter Zijlstra 
40789a09141SPeter Zijlstra #define NFS_CONGESTION_ON_THRESH 	(nfs_congestion_kb >> (PAGE_SHIFT-10))
40889a09141SPeter Zijlstra #define NFS_CONGESTION_OFF_THRESH	\
40989a09141SPeter Zijlstra 	(NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
41089a09141SPeter Zijlstra 
nfs_folio_set_writeback(struct folio * folio)4110c493b5cSTrond Myklebust static void nfs_folio_set_writeback(struct folio *folio)
41289a09141SPeter Zijlstra {
4130c493b5cSTrond Myklebust 	struct nfs_server *nfss = NFS_SERVER(folio_file_mapping(folio)->host);
4145a6d41b3STrond Myklebust 
4150c493b5cSTrond Myklebust 	folio_start_writeback(folio);
4160c493b5cSTrond Myklebust 	if (atomic_long_inc_return(&nfss->writeback) > NFS_CONGESTION_ON_THRESH)
4176df25e58SNeilBrown 		nfss->write_congested = 1;
41889a09141SPeter Zijlstra }
41989a09141SPeter Zijlstra 
nfs_folio_end_writeback(struct folio * folio)4200c493b5cSTrond Myklebust static void nfs_folio_end_writeback(struct folio *folio)
42189a09141SPeter Zijlstra {
4220c493b5cSTrond Myklebust 	struct nfs_server *nfss = NFS_SERVER(folio_file_mapping(folio)->host);
42389a09141SPeter Zijlstra 
4240c493b5cSTrond Myklebust 	folio_end_writeback(folio);
4250c493b5cSTrond Myklebust 	if (atomic_long_dec_return(&nfss->writeback) <
4260c493b5cSTrond Myklebust 	    NFS_CONGESTION_OFF_THRESH)
4276df25e58SNeilBrown 		nfss->write_congested = 0;
42889a09141SPeter Zijlstra }
42989a09141SPeter Zijlstra 
nfs_page_end_writeback(struct nfs_page * req)4300c493b5cSTrond Myklebust static void nfs_page_end_writeback(struct nfs_page *req)
4310c493b5cSTrond Myklebust {
4320c493b5cSTrond Myklebust 	if (nfs_page_group_sync_on_bit(req, PG_WB_END)) {
4330c493b5cSTrond Myklebust 		nfs_unlock_request(req);
4340c493b5cSTrond Myklebust 		nfs_folio_end_writeback(nfs_page_to_folio(req));
4350c493b5cSTrond Myklebust 	} else
4360c493b5cSTrond Myklebust 		nfs_unlock_request(req);
4370c493b5cSTrond Myklebust }
4380c493b5cSTrond Myklebust 
439d4581383SWeston Andros Adamson /*
440d4581383SWeston Andros Adamson  * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
441d4581383SWeston Andros Adamson  *
442d4581383SWeston Andros Adamson  * @destroy_list - request list (using wb_this_page) terminated by @old_head
443d4581383SWeston Andros Adamson  * @old_head - the old head of the list
444d4581383SWeston Andros Adamson  *
445d4581383SWeston Andros Adamson  * All subrequests must be locked and removed from all lists, so at this point
446d4581383SWeston Andros Adamson  * they are only "active" in this function, and possibly in nfs_wait_on_request
447d4581383SWeston Andros Adamson  * with a reference held by some other context.
448d4581383SWeston Andros Adamson  */
449d4581383SWeston Andros Adamson static void
nfs_destroy_unlinked_subrequests(struct nfs_page * destroy_list,struct nfs_page * old_head,struct inode * inode)450d4581383SWeston Andros Adamson nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
451b66aaa8dSTrond Myklebust 				 struct nfs_page *old_head,
452b66aaa8dSTrond Myklebust 				 struct inode *inode)
453d4581383SWeston Andros Adamson {
454d4581383SWeston Andros Adamson 	while (destroy_list) {
455d4581383SWeston Andros Adamson 		struct nfs_page *subreq = destroy_list;
456d4581383SWeston Andros Adamson 
457d4581383SWeston Andros Adamson 		destroy_list = (subreq->wb_this_page == old_head) ?
458d4581383SWeston Andros Adamson 				   NULL : subreq->wb_this_page;
459d4581383SWeston Andros Adamson 
46008ca8b21STrond Myklebust 		/* Note: lock subreq in order to change subreq->wb_head */
46108ca8b21STrond Myklebust 		nfs_page_set_headlock(subreq);
462d4581383SWeston Andros Adamson 		WARN_ON_ONCE(old_head != subreq->wb_head);
463d4581383SWeston Andros Adamson 
464d4581383SWeston Andros Adamson 		/* make sure old group is not used */
465d4581383SWeston Andros Adamson 		subreq->wb_this_page = subreq;
46608ca8b21STrond Myklebust 		subreq->wb_head = subreq;
467d4581383SWeston Andros Adamson 
468902a4c00STrond Myklebust 		clear_bit(PG_REMOVE, &subreq->wb_flags);
469902a4c00STrond Myklebust 
4705b2b5187STrond Myklebust 		/* Note: races with nfs_page_group_destroy() */
4715b2b5187STrond Myklebust 		if (!kref_read(&subreq->wb_kref)) {
4725b2b5187STrond Myklebust 			/* Check if we raced with nfs_page_group_destroy() */
47308ca8b21STrond Myklebust 			if (test_and_clear_bit(PG_TEARDOWN, &subreq->wb_flags)) {
47408ca8b21STrond Myklebust 				nfs_page_clear_headlock(subreq);
4755b2b5187STrond Myklebust 				nfs_free_request(subreq);
47608ca8b21STrond Myklebust 			} else
47708ca8b21STrond Myklebust 				nfs_page_clear_headlock(subreq);
4785b2b5187STrond Myklebust 			continue;
4795b2b5187STrond Myklebust 		}
48008ca8b21STrond Myklebust 		nfs_page_clear_headlock(subreq);
481d4581383SWeston Andros Adamson 
482add42de3STrond Myklebust 		nfs_release_request(old_head);
4835b2b5187STrond Myklebust 
484b66aaa8dSTrond Myklebust 		if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) {
485d4581383SWeston Andros Adamson 			nfs_release_request(subreq);
486a6b6d5b8STrond Myklebust 			atomic_long_dec(&NFS_I(inode)->nrequests);
487d4581383SWeston Andros Adamson 		}
4885b2b5187STrond Myklebust 
4895b2b5187STrond Myklebust 		/* subreq is now totally disconnected from page group or any
4905b2b5187STrond Myklebust 		 * write / commit lists. last chance to wake any waiters */
4915b2b5187STrond Myklebust 		nfs_unlock_and_release_request(subreq);
492d4581383SWeston Andros Adamson 	}
493d4581383SWeston Andros Adamson }
494d4581383SWeston Andros Adamson 
495d4581383SWeston Andros Adamson /*
496e00ed89dSTrond Myklebust  * nfs_join_page_group - destroy subrequests of the head req
497e00ed89dSTrond Myklebust  * @head: the page used to lookup the "page group" of nfs_page structures
498e00ed89dSTrond Myklebust  * @inode: Inode to which the request belongs.
499d4581383SWeston Andros Adamson  *
500d4581383SWeston Andros Adamson  * This function joins all sub requests to the head request by first
501d4581383SWeston Andros Adamson  * locking all requests in the group, cancelling any pending operations
502d4581383SWeston Andros Adamson  * and finally updating the head request to cover the whole range covered by
503d4581383SWeston Andros Adamson  * the (former) group.  All subrequests are removed from any write or commit
504d4581383SWeston Andros Adamson  * lists, unlinked from the group and destroyed.
505d4581383SWeston Andros Adamson  */
nfs_join_page_group(struct nfs_page * head,struct nfs_commit_info * cinfo,struct inode * inode)506b193a78dSTrond Myklebust void nfs_join_page_group(struct nfs_page *head, struct nfs_commit_info *cinfo,
507b193a78dSTrond Myklebust 			 struct inode *inode)
508d4581383SWeston Andros Adamson {
509e00ed89dSTrond Myklebust 	struct nfs_page *subreq;
510d4581383SWeston Andros Adamson 	struct nfs_page *destroy_list = NULL;
511a62f8e3bSTrond Myklebust 	unsigned int pgbase, off, bytes;
512a62f8e3bSTrond Myklebust 
513a62f8e3bSTrond Myklebust 	pgbase = head->wb_pgbase;
514a62f8e3bSTrond Myklebust 	bytes = head->wb_bytes;
515a62f8e3bSTrond Myklebust 	off = head->wb_offset;
516a0e265bcSTrond Myklebust 	for (subreq = head->wb_this_page; subreq != head;
517a0e265bcSTrond Myklebust 			subreq = subreq->wb_this_page) {
518a62f8e3bSTrond Myklebust 		/* Subrequests should always form a contiguous range */
519a62f8e3bSTrond Myklebust 		if (pgbase > subreq->wb_pgbase) {
520a62f8e3bSTrond Myklebust 			off -= pgbase - subreq->wb_pgbase;
521a62f8e3bSTrond Myklebust 			bytes += pgbase - subreq->wb_pgbase;
522a62f8e3bSTrond Myklebust 			pgbase = subreq->wb_pgbase;
523a62f8e3bSTrond Myklebust 		}
524a62f8e3bSTrond Myklebust 		bytes = max(subreq->wb_pgbase + subreq->wb_bytes
525a62f8e3bSTrond Myklebust 				- pgbase, bytes);
5261bd5d6d0STrond Myklebust 	}
5271bd5d6d0STrond Myklebust 
528a62f8e3bSTrond Myklebust 	/* Set the head request's range to cover the former page group */
529a62f8e3bSTrond Myklebust 	head->wb_pgbase = pgbase;
530a62f8e3bSTrond Myklebust 	head->wb_bytes = bytes;
531a62f8e3bSTrond Myklebust 	head->wb_offset = off;
532d4581383SWeston Andros Adamson 
533d4581383SWeston Andros Adamson 	/* Now that all requests are locked, make sure they aren't on any list.
534d4581383SWeston Andros Adamson 	 * Commit list removal accounting is done after locks are dropped */
535d4581383SWeston Andros Adamson 	subreq = head;
536d4581383SWeston Andros Adamson 	do {
537b193a78dSTrond Myklebust 		nfs_clear_request_commit(cinfo, subreq);
538d4581383SWeston Andros Adamson 		subreq = subreq->wb_this_page;
539d4581383SWeston Andros Adamson 	} while (subreq != head);
540d4581383SWeston Andros Adamson 
541d4581383SWeston Andros Adamson 	/* unlink subrequests from head, destroy them later */
542d4581383SWeston Andros Adamson 	if (head->wb_this_page != head) {
543d4581383SWeston Andros Adamson 		/* destroy list will be terminated by head */
544d4581383SWeston Andros Adamson 		destroy_list = head->wb_this_page;
545d4581383SWeston Andros Adamson 		head->wb_this_page = head;
546d4581383SWeston Andros Adamson 	}
547d4581383SWeston Andros Adamson 
548b66aaa8dSTrond Myklebust 	nfs_destroy_unlinked_subrequests(destroy_list, head, inode);
549b5bab9bfSTrond Myklebust }
550b5bab9bfSTrond Myklebust 
551e00ed89dSTrond Myklebust /*
552e00ed89dSTrond Myklebust  * nfs_lock_and_join_requests - join all subreqs to the head req
5530c493b5cSTrond Myklebust  * @folio: the folio used to lookup the "page group" of nfs_page structures
554e00ed89dSTrond Myklebust  *
555e00ed89dSTrond Myklebust  * This function joins all sub requests to the head request by first
556e00ed89dSTrond Myklebust  * locking all requests in the group, cancelling any pending operations
557e00ed89dSTrond Myklebust  * and finally updating the head request to cover the whole range covered by
558e00ed89dSTrond Myklebust  * the (former) group.  All subrequests are removed from any write or commit
559e00ed89dSTrond Myklebust  * lists, unlinked from the group and destroyed.
560e00ed89dSTrond Myklebust  *
561e00ed89dSTrond Myklebust  * Returns a locked, referenced pointer to the head request - which after
562e00ed89dSTrond Myklebust  * this call is guaranteed to be the only request associated with the page.
5630c493b5cSTrond Myklebust  * Returns NULL if no requests are found for @folio, or a ERR_PTR if an
564e00ed89dSTrond Myklebust  * error was encountered.
565e00ed89dSTrond Myklebust  */
nfs_lock_and_join_requests(struct folio * folio)5660c493b5cSTrond Myklebust static struct nfs_page *nfs_lock_and_join_requests(struct folio *folio)
567e00ed89dSTrond Myklebust {
5680c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
569e00ed89dSTrond Myklebust 	struct nfs_page *head;
570b193a78dSTrond Myklebust 	struct nfs_commit_info cinfo;
571e00ed89dSTrond Myklebust 	int ret;
572e00ed89dSTrond Myklebust 
573b193a78dSTrond Myklebust 	nfs_init_cinfo_from_inode(&cinfo, inode);
574e00ed89dSTrond Myklebust 	/*
575e00ed89dSTrond Myklebust 	 * A reference is taken only on the head request which acts as a
576e00ed89dSTrond Myklebust 	 * reference to the whole page group - the group will not be destroyed
577e00ed89dSTrond Myklebust 	 * until the head reference is released.
578e00ed89dSTrond Myklebust 	 */
5790c493b5cSTrond Myklebust 	head = nfs_folio_find_and_lock_request(folio);
580e00ed89dSTrond Myklebust 	if (IS_ERR_OR_NULL(head))
581d4581383SWeston Andros Adamson 		return head;
5820671d8f1SMarkus Elfring 
583e00ed89dSTrond Myklebust 	/* lock each request in the page group */
584e00ed89dSTrond Myklebust 	ret = nfs_page_group_lock_subrequests(head);
585e00ed89dSTrond Myklebust 	if (ret < 0) {
5860671d8f1SMarkus Elfring 		nfs_unlock_and_release_request(head);
5870671d8f1SMarkus Elfring 		return ERR_PTR(ret);
588612c9384STrond Myklebust 	}
589074cc1deSTrond Myklebust 
590b193a78dSTrond Myklebust 	nfs_join_page_group(head, &cinfo, inode);
591e00ed89dSTrond Myklebust 
592e00ed89dSTrond Myklebust 	return head;
593e00ed89dSTrond Myklebust }
594e00ed89dSTrond Myklebust 
nfs_write_error(struct nfs_page * req,int error)5956fbda89bSTrond Myklebust static void nfs_write_error(struct nfs_page *req, int error)
5960bcbf039SPeng Tao {
5976dd85e83STrond Myklebust 	trace_nfs_write_error(nfs_page_to_inode(req), req, error);
5980c493b5cSTrond Myklebust 	nfs_mapping_set_error(nfs_page_to_folio(req), error);
59906c9fdf3STrond Myklebust 	nfs_inode_remove_request(req);
6000c493b5cSTrond Myklebust 	nfs_page_end_writeback(req);
6011f84ccdfSFred Isaman 	nfs_release_request(req);
6020bcbf039SPeng Tao }
6030bcbf039SPeng Tao 
604074cc1deSTrond Myklebust /*
605074cc1deSTrond Myklebust  * Find an associated nfs write request, and prepare to flush it out
606074cc1deSTrond Myklebust  * May return an error if the user signalled nfs_wait_on_request().
607074cc1deSTrond Myklebust  */
nfs_page_async_flush(struct folio * folio,struct writeback_control * wbc,struct nfs_pageio_descriptor * pgio)6080c493b5cSTrond Myklebust static int nfs_page_async_flush(struct folio *folio,
609c6fd3511STrond Myklebust 				struct writeback_control *wbc,
610c6fd3511STrond Myklebust 				struct nfs_pageio_descriptor *pgio)
611074cc1deSTrond Myklebust {
612074cc1deSTrond Myklebust 	struct nfs_page *req;
613074cc1deSTrond Myklebust 	int ret = 0;
614074cc1deSTrond Myklebust 
6150c493b5cSTrond Myklebust 	req = nfs_lock_and_join_requests(folio);
616074cc1deSTrond Myklebust 	if (!req)
617074cc1deSTrond Myklebust 		goto out;
618074cc1deSTrond Myklebust 	ret = PTR_ERR(req);
619074cc1deSTrond Myklebust 	if (IS_ERR(req))
620074cc1deSTrond Myklebust 		goto out;
621074cc1deSTrond Myklebust 
6220c493b5cSTrond Myklebust 	nfs_folio_set_writeback(folio);
623deed85e7STrond Myklebust 	WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
624074cc1deSTrond Myklebust 
625a6598813STrond Myklebust 	/* If there is a fatal error that covers this write, just exit */
62696c41455STrond Myklebust 	ret = pgio->pg_error;
62796c41455STrond Myklebust 	if (nfs_error_is_fatal_on_server(ret))
628a6598813STrond Myklebust 		goto out_launder;
629a6598813STrond Myklebust 
63096c41455STrond Myklebust 	ret = 0;
631f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(pgio, req)) {
632074cc1deSTrond Myklebust 		ret = pgio->pg_error;
6330bcbf039SPeng Tao 		/*
634c373fff7STrond Myklebust 		 * Remove the problematic req upon fatal errors on the server
6350bcbf039SPeng Tao 		 */
636c373fff7STrond Myklebust 		if (nfs_error_is_fatal_on_server(ret))
637a6598813STrond Myklebust 			goto out_launder;
638c6fd3511STrond Myklebust 		if (wbc->sync_mode == WB_SYNC_NONE)
639c6fd3511STrond Myklebust 			ret = AOP_WRITEPAGE_ACTIVATE;
6400c493b5cSTrond Myklebust 		folio_redirty_for_writepage(wbc, folio);
6418fc75bedSTrond Myklebust 		nfs_redirty_request(req);
64296c41455STrond Myklebust 		pgio->pg_error = 0;
64340f90271STrond Myklebust 	} else
6440c493b5cSTrond Myklebust 		nfs_add_stats(folio_file_mapping(folio)->host,
64540f90271STrond Myklebust 			      NFSIOS_WRITEPAGES, 1);
646074cc1deSTrond Myklebust out:
647074cc1deSTrond Myklebust 	return ret;
648a6598813STrond Myklebust out_launder:
6496fbda89bSTrond Myklebust 	nfs_write_error(req, ret);
65014bebe3cSTrond Myklebust 	return 0;
651e261f51fSTrond Myklebust }
652e261f51fSTrond Myklebust 
nfs_do_writepage(struct folio * folio,struct writeback_control * wbc,struct nfs_pageio_descriptor * pgio)6530c493b5cSTrond Myklebust static int nfs_do_writepage(struct folio *folio, struct writeback_control *wbc,
654c373fff7STrond Myklebust 			    struct nfs_pageio_descriptor *pgio)
655f758c885STrond Myklebust {
6560c493b5cSTrond Myklebust 	nfs_pageio_cond_complete(pgio, folio_index(folio));
6570c493b5cSTrond Myklebust 	return nfs_page_async_flush(folio, wbc, pgio);
658f758c885STrond Myklebust }
659f758c885STrond Myklebust 
660e261f51fSTrond Myklebust /*
6611da177e4SLinus Torvalds  * Write an mmapped page to the server.
6621da177e4SLinus Torvalds  */
nfs_writepage_locked(struct folio * folio,struct writeback_control * wbc)6630c493b5cSTrond Myklebust static int nfs_writepage_locked(struct folio *folio,
664c373fff7STrond Myklebust 				struct writeback_control *wbc)
6651da177e4SLinus Torvalds {
666f758c885STrond Myklebust 	struct nfs_pageio_descriptor pgio;
6670c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
668e261f51fSTrond Myklebust 	int err;
6691da177e4SLinus Torvalds 
6706df25e58SNeilBrown 	if (wbc->sync_mode == WB_SYNC_NONE &&
671be8a1772SNeilBrown 	    NFS_SERVER(inode)->write_congested) {
672be8a1772SNeilBrown 		folio_redirty_for_writepage(wbc, folio);
6736df25e58SNeilBrown 		return AOP_WRITEPAGE_ACTIVATE;
674be8a1772SNeilBrown 	}
6756df25e58SNeilBrown 
67640f90271STrond Myklebust 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
6770c493b5cSTrond Myklebust 	nfs_pageio_init_write(&pgio, inode, 0, false,
6780c493b5cSTrond Myklebust 			      &nfs_async_write_completion_ops);
6790c493b5cSTrond Myklebust 	err = nfs_do_writepage(folio, wbc, &pgio);
68096c41455STrond Myklebust 	pgio.pg_error = 0;
681f758c885STrond Myklebust 	nfs_pageio_complete(&pgio);
6824d770ccfSTrond Myklebust 	return err;
6834d770ccfSTrond Myklebust }
6844d770ccfSTrond Myklebust 
nfs_writepage(struct page * page,struct writeback_control * wbc)6854d770ccfSTrond Myklebust int nfs_writepage(struct page *page, struct writeback_control *wbc)
6864d770ccfSTrond Myklebust {
6870c493b5cSTrond Myklebust 	struct folio *folio = page_folio(page);
688f758c885STrond Myklebust 	int ret;
6894d770ccfSTrond Myklebust 
6900c493b5cSTrond Myklebust 	ret = nfs_writepage_locked(folio, wbc);
69196c41455STrond Myklebust 	if (ret != AOP_WRITEPAGE_ACTIVATE)
6921da177e4SLinus Torvalds 		unlock_page(page);
693f758c885STrond Myklebust 	return ret;
694f758c885STrond Myklebust }
695f758c885STrond Myklebust 
nfs_writepages_callback(struct folio * folio,struct writeback_control * wbc,void * data)696d585bdbeSMatthew Wilcox (Oracle) static int nfs_writepages_callback(struct folio *folio,
6970c493b5cSTrond Myklebust 				   struct writeback_control *wbc, void *data)
698f758c885STrond Myklebust {
699f758c885STrond Myklebust 	int ret;
700f758c885STrond Myklebust 
7010c493b5cSTrond Myklebust 	ret = nfs_do_writepage(folio, wbc, data);
70296c41455STrond Myklebust 	if (ret != AOP_WRITEPAGE_ACTIVATE)
703d585bdbeSMatthew Wilcox (Oracle) 		folio_unlock(folio);
704f758c885STrond Myklebust 	return ret;
7051da177e4SLinus Torvalds }
7061da177e4SLinus Torvalds 
nfs_io_completion_commit(void * inode)707919e3bd9STrond Myklebust static void nfs_io_completion_commit(void *inode)
708919e3bd9STrond Myklebust {
709919e3bd9STrond Myklebust 	nfs_commit_inode(inode, 0);
710919e3bd9STrond Myklebust }
711919e3bd9STrond Myklebust 
nfs_writepages(struct address_space * mapping,struct writeback_control * wbc)7121da177e4SLinus Torvalds int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
7131da177e4SLinus Torvalds {
7141da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
715c63c7b05STrond Myklebust 	struct nfs_pageio_descriptor pgio;
716ed7bcdb3STrond Myklebust 	struct nfs_io_completion *ioc = NULL;
717ed7bcdb3STrond Myklebust 	unsigned int mntflags = NFS_SERVER(inode)->flags;
718ed7bcdb3STrond Myklebust 	int priority = 0;
7191da177e4SLinus Torvalds 	int err;
7201da177e4SLinus Torvalds 
7216df25e58SNeilBrown 	if (wbc->sync_mode == WB_SYNC_NONE &&
7226df25e58SNeilBrown 	    NFS_SERVER(inode)->write_congested)
7236df25e58SNeilBrown 		return 0;
7246df25e58SNeilBrown 
72591d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
72691d5b470SChuck Lever 
727ed7bcdb3STrond Myklebust 	if (!(mntflags & NFS_MOUNT_WRITE_EAGER) || wbc->for_kupdate ||
728ed7bcdb3STrond Myklebust 	    wbc->for_background || wbc->for_sync || wbc->for_reclaim) {
7292b17d725STrond Myklebust 		ioc = nfs_io_completion_alloc(GFP_KERNEL);
730919e3bd9STrond Myklebust 		if (ioc)
731ed7bcdb3STrond Myklebust 			nfs_io_completion_init(ioc, nfs_io_completion_commit,
732ed7bcdb3STrond Myklebust 					       inode);
733ed7bcdb3STrond Myklebust 		priority = wb_priority(wbc);
734ed7bcdb3STrond Myklebust 	}
735919e3bd9STrond Myklebust 
736c6fd3511STrond Myklebust 	do {
737ed7bcdb3STrond Myklebust 		nfs_pageio_init_write(&pgio, inode, priority, false,
738a20c93e3SChristoph Hellwig 				      &nfs_async_write_completion_ops);
739919e3bd9STrond Myklebust 		pgio.pg_io_completion = ioc;
740c6fd3511STrond Myklebust 		err = write_cache_pages(mapping, wbc, nfs_writepages_callback,
741c6fd3511STrond Myklebust 					&pgio);
74296c41455STrond Myklebust 		pgio.pg_error = 0;
743c63c7b05STrond Myklebust 		nfs_pageio_complete(&pgio);
744c6fd3511STrond Myklebust 	} while (err < 0 && !nfs_error_is_fatal(err));
745919e3bd9STrond Myklebust 	nfs_io_completion_put(ioc);
74672cb77f4STrond Myklebust 
747f758c885STrond Myklebust 	if (err < 0)
74872cb77f4STrond Myklebust 		goto out_err;
749c63c7b05STrond Myklebust 	return 0;
75072cb77f4STrond Myklebust out_err:
75172cb77f4STrond Myklebust 	return err;
7521da177e4SLinus Torvalds }
7531da177e4SLinus Torvalds 
7541da177e4SLinus Torvalds /*
7551da177e4SLinus Torvalds  * Insert a write request into an inode
7561da177e4SLinus Torvalds  */
nfs_inode_add_request(struct nfs_page * req)7570c493b5cSTrond Myklebust static void nfs_inode_add_request(struct nfs_page *req)
7581da177e4SLinus Torvalds {
7590c493b5cSTrond Myklebust 	struct folio *folio = nfs_page_to_folio(req);
7600c493b5cSTrond Myklebust 	struct address_space *mapping = folio_file_mapping(folio);
7610c493b5cSTrond Myklebust 	struct nfs_inode *nfsi = NFS_I(mapping->host);
762e7d39069STrond Myklebust 
7632bfc6e56SWeston Andros Adamson 	WARN_ON_ONCE(req->wb_this_page != req);
7642bfc6e56SWeston Andros Adamson 
765e7d39069STrond Myklebust 	/* Lock the request! */
7667ad84aa9STrond Myklebust 	nfs_lock_request(req);
767e7d39069STrond Myklebust 
76829418aa4SMel Gorman 	/*
76929418aa4SMel Gorman 	 * Swap-space should not get truncated. Hence no need to plug the race
77029418aa4SMel Gorman 	 * with invalidate/truncate.
77129418aa4SMel Gorman 	 */
7724b9bb25bSTrond Myklebust 	spin_lock(&mapping->private_lock);
7730c493b5cSTrond Myklebust 	if (likely(!folio_test_swapcache(folio))) {
7742df485a7STrond Myklebust 		set_bit(PG_MAPPED, &req->wb_flags);
7750c493b5cSTrond Myklebust 		folio_set_private(folio);
7760c493b5cSTrond Myklebust 		folio->private = 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  */
nfs_inode_remove_request(struct nfs_page * req)7911da177e4SLinus Torvalds static void nfs_inode_remove_request(struct nfs_page *req)
7921da177e4SLinus Torvalds {
7936a6d4644SScott Mayhew 	struct nfs_inode *nfsi = NFS_I(nfs_page_to_inode(req));
7946a6d4644SScott Mayhew 
79520633f04SWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
7960c493b5cSTrond Myklebust 		struct folio *folio = nfs_page_to_folio(req->wb_head);
7970c493b5cSTrond Myklebust 		struct address_space *mapping = folio_file_mapping(folio);
7981da177e4SLinus Torvalds 
7994b9bb25bSTrond Myklebust 		spin_lock(&mapping->private_lock);
8000c493b5cSTrond Myklebust 		if (likely(folio && !folio_test_swapcache(folio))) {
8010c493b5cSTrond Myklebust 			folio->private = NULL;
8020c493b5cSTrond Myklebust 			folio_clear_private(folio);
8030c493b5cSTrond Myklebust 			clear_bit(PG_MAPPED, &req->wb_head->wb_flags);
80429418aa4SMel Gorman 		}
8054b9bb25bSTrond Myklebust 		spin_unlock(&mapping->private_lock);
80620633f04SWeston Andros Adamson 	}
80717089a29SWeston Andros Adamson 
80833ea5aaaSZhangXiaoxu 	if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags)) {
8096a6d4644SScott Mayhew 		atomic_long_dec(&nfsi->nrequests);
810dd1b2026SJeff Layton 		nfs_release_request(req);
81133ea5aaaSZhangXiaoxu 	}
8121da177e4SLinus Torvalds }
8131da177e4SLinus Torvalds 
nfs_mark_request_dirty(struct nfs_page * req)8140c493b5cSTrond Myklebust static void nfs_mark_request_dirty(struct nfs_page *req)
81561822ab5STrond Myklebust {
8160c493b5cSTrond Myklebust 	struct folio *folio = nfs_page_to_folio(req);
8170c493b5cSTrond Myklebust 	if (folio)
8180c493b5cSTrond Myklebust 		filemap_dirty_folio(folio_mapping(folio), folio);
81961822ab5STrond Myklebust }
82061822ab5STrond Myklebust 
8213a3908c8STrond Myklebust /*
8223a3908c8STrond Myklebust  * nfs_page_search_commits_for_head_request_locked
8233a3908c8STrond Myklebust  *
8240c493b5cSTrond Myklebust  * Search through commit lists on @inode for the head request for @folio.
8253a3908c8STrond Myklebust  * Must be called while holding the inode (which is cinfo) lock.
8263a3908c8STrond Myklebust  *
8273a3908c8STrond Myklebust  * Returns the head request if found, or NULL if not found.
8283a3908c8STrond Myklebust  */
8293a3908c8STrond Myklebust static struct nfs_page *
nfs_page_search_commits_for_head_request_locked(struct nfs_inode * nfsi,struct folio * folio)8303a3908c8STrond Myklebust nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
8310c493b5cSTrond Myklebust 						struct folio *folio)
8323a3908c8STrond Myklebust {
8333a3908c8STrond Myklebust 	struct nfs_page *freq, *t;
8343a3908c8STrond Myklebust 	struct nfs_commit_info cinfo;
8353a3908c8STrond Myklebust 	struct inode *inode = &nfsi->vfs_inode;
8363a3908c8STrond Myklebust 
8373a3908c8STrond Myklebust 	nfs_init_cinfo_from_inode(&cinfo, inode);
8383a3908c8STrond Myklebust 
8393a3908c8STrond Myklebust 	/* search through pnfs commit lists */
8400c493b5cSTrond Myklebust 	freq = pnfs_search_commit_reqs(inode, &cinfo, folio);
8413a3908c8STrond Myklebust 	if (freq)
8423a3908c8STrond Myklebust 		return freq->wb_head;
8433a3908c8STrond Myklebust 
8443a3908c8STrond Myklebust 	/* Linearly search the commit list for the correct request */
8453a3908c8STrond Myklebust 	list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
8460c493b5cSTrond Myklebust 		if (nfs_page_to_folio(freq) == folio)
8473a3908c8STrond Myklebust 			return freq->wb_head;
8483a3908c8STrond Myklebust 	}
8493a3908c8STrond Myklebust 
8503a3908c8STrond Myklebust 	return NULL;
8513a3908c8STrond Myklebust }
8523a3908c8STrond Myklebust 
8538dd37758STrond Myklebust /**
85486d80f97STrond Myklebust  * nfs_request_add_commit_list_locked - add request to a commit list
85586d80f97STrond Myklebust  * @req: pointer to a struct nfs_page
85686d80f97STrond Myklebust  * @dst: commit list head
85786d80f97STrond Myklebust  * @cinfo: holds list lock and accounting info
85886d80f97STrond Myklebust  *
85986d80f97STrond Myklebust  * This sets the PG_CLEAN bit, updates the cinfo count of
86086d80f97STrond Myklebust  * number of outstanding requests requiring a commit as well as
86186d80f97STrond Myklebust  * the MM page stats.
86286d80f97STrond Myklebust  *
863e824f99aSTrond Myklebust  * The caller must hold NFS_I(cinfo->inode)->commit_mutex, and the
864e824f99aSTrond Myklebust  * nfs_page lock.
86586d80f97STrond Myklebust  */
86686d80f97STrond Myklebust void
nfs_request_add_commit_list_locked(struct nfs_page * req,struct list_head * dst,struct nfs_commit_info * cinfo)86786d80f97STrond Myklebust nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
86886d80f97STrond Myklebust 			    struct nfs_commit_info *cinfo)
86986d80f97STrond Myklebust {
87086d80f97STrond Myklebust 	set_bit(PG_CLEAN, &req->wb_flags);
87186d80f97STrond Myklebust 	nfs_list_add_request(req, dst);
8725cb953d4STrond Myklebust 	atomic_long_inc(&cinfo->mds->ncommit);
87386d80f97STrond Myklebust }
87486d80f97STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
87586d80f97STrond Myklebust 
87686d80f97STrond Myklebust /**
8778dd37758STrond Myklebust  * nfs_request_add_commit_list - add request to a commit list
8788dd37758STrond Myklebust  * @req: pointer to a struct nfs_page
879ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
8808dd37758STrond Myklebust  *
881ea2cf228SFred Isaman  * This sets the PG_CLEAN bit, updates the cinfo count of
8828dd37758STrond Myklebust  * number of outstanding requests requiring a commit as well as
8838dd37758STrond Myklebust  * the MM page stats.
8848dd37758STrond Myklebust  *
885ea2cf228SFred Isaman  * The caller must _not_ hold the cinfo->lock, but must be
8868dd37758STrond Myklebust  * holding the nfs_page lock.
8878dd37758STrond Myklebust  */
8888dd37758STrond Myklebust void
nfs_request_add_commit_list(struct nfs_page * req,struct nfs_commit_info * cinfo)8896272dcc6SAnna Schumaker nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
8908dd37758STrond Myklebust {
891e824f99aSTrond Myklebust 	mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
8926272dcc6SAnna Schumaker 	nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
893e824f99aSTrond Myklebust 	mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
8940c493b5cSTrond Myklebust 	nfs_folio_mark_unstable(nfs_page_to_folio(req), cinfo);
8958dd37758STrond Myklebust }
8968dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
8978dd37758STrond Myklebust 
8988dd37758STrond Myklebust /**
8998dd37758STrond Myklebust  * nfs_request_remove_commit_list - Remove request from a commit list
9008dd37758STrond Myklebust  * @req: pointer to a nfs_page
901ea2cf228SFred Isaman  * @cinfo: holds list lock and accounting info
9028dd37758STrond Myklebust  *
903ea2cf228SFred Isaman  * This clears the PG_CLEAN bit, and updates the cinfo's count of
9048dd37758STrond Myklebust  * number of outstanding requests requiring a commit
9058dd37758STrond Myklebust  * It does not update the MM page stats.
9068dd37758STrond Myklebust  *
907ea2cf228SFred Isaman  * The caller _must_ hold the cinfo->lock and the nfs_page lock.
9088dd37758STrond Myklebust  */
9098dd37758STrond Myklebust void
nfs_request_remove_commit_list(struct nfs_page * req,struct nfs_commit_info * cinfo)910ea2cf228SFred Isaman nfs_request_remove_commit_list(struct nfs_page *req,
911ea2cf228SFred Isaman 			       struct nfs_commit_info *cinfo)
9128dd37758STrond Myklebust {
9138dd37758STrond Myklebust 	if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
9148dd37758STrond Myklebust 		return;
9158dd37758STrond Myklebust 	nfs_list_remove_request(req);
9165cb953d4STrond Myklebust 	atomic_long_dec(&cinfo->mds->ncommit);
9178dd37758STrond Myklebust }
9188dd37758STrond Myklebust EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
9198dd37758STrond Myklebust 
nfs_init_cinfo_from_inode(struct nfs_commit_info * cinfo,struct inode * inode)920ea2cf228SFred Isaman static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
921ea2cf228SFred Isaman 				      struct inode *inode)
922ea2cf228SFred Isaman {
923fe238e60SDave Wysochanski 	cinfo->inode = inode;
924ea2cf228SFred Isaman 	cinfo->mds = &NFS_I(inode)->commit_info;
925ea2cf228SFred Isaman 	cinfo->ds = pnfs_get_ds_info(inode);
926b359f9d0SFred Isaman 	cinfo->dreq = NULL;
927f453a54aSFred Isaman 	cinfo->completion_ops = &nfs_commit_completion_ops;
928ea2cf228SFred Isaman }
929ea2cf228SFred Isaman 
nfs_init_cinfo(struct nfs_commit_info * cinfo,struct inode * inode,struct nfs_direct_req * dreq)930ea2cf228SFred Isaman void nfs_init_cinfo(struct nfs_commit_info *cinfo,
931ea2cf228SFred Isaman 		    struct inode *inode,
932ea2cf228SFred Isaman 		    struct nfs_direct_req *dreq)
933ea2cf228SFred Isaman {
9341763da12SFred Isaman 	if (dreq)
9351763da12SFred Isaman 		nfs_init_cinfo_from_dreq(cinfo, dreq);
9361763da12SFred Isaman 	else
937ea2cf228SFred Isaman 		nfs_init_cinfo_from_inode(cinfo, inode);
938ea2cf228SFred Isaman }
939ea2cf228SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_cinfo);
9408dd37758STrond Myklebust 
9411da177e4SLinus Torvalds /*
9421da177e4SLinus Torvalds  * Add a request to the inode's commit list.
9431da177e4SLinus Torvalds  */
9441763da12SFred Isaman void
nfs_mark_request_commit(struct nfs_page * req,struct pnfs_layout_segment * lseg,struct nfs_commit_info * cinfo,u32 ds_commit_idx)945ea2cf228SFred Isaman nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
946b57ff130SWeston Andros Adamson 			struct nfs_commit_info *cinfo, u32 ds_commit_idx)
9471da177e4SLinus Torvalds {
948b57ff130SWeston Andros Adamson 	if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
9498dd37758STrond Myklebust 		return;
9506272dcc6SAnna Schumaker 	nfs_request_add_commit_list(req, cinfo);
9511da177e4SLinus Torvalds }
9528e821cadSTrond Myklebust 
nfs_folio_clear_commit(struct folio * folio)9530c493b5cSTrond Myklebust static void nfs_folio_clear_commit(struct folio *folio)
954e468bae9STrond Myklebust {
9550c493b5cSTrond Myklebust 	if (folio) {
9560c493b5cSTrond Myklebust 		long nr = folio_nr_pages(folio);
9570c493b5cSTrond Myklebust 
9580c493b5cSTrond Myklebust 		node_stat_mod_folio(folio, NR_WRITEBACK, -nr);
9590c493b5cSTrond Myklebust 		wb_stat_mod(&inode_to_bdi(folio_file_mapping(folio)->host)->wb,
9600c493b5cSTrond Myklebust 			    WB_WRITEBACK, -nr);
9610c493b5cSTrond Myklebust 	}
962e468bae9STrond Myklebust }
963d6d6dc7cSFred Isaman 
964b5bab9bfSTrond Myklebust /* Called holding the request lock on @req */
nfs_clear_request_commit(struct nfs_commit_info * cinfo,struct nfs_page * req)965b193a78dSTrond Myklebust static void nfs_clear_request_commit(struct nfs_commit_info *cinfo,
966b193a78dSTrond Myklebust 				     struct nfs_page *req)
967d6d6dc7cSFred Isaman {
9688dd37758STrond Myklebust 	if (test_bit(PG_CLEAN, &req->wb_flags)) {
9699fcd5960STrond Myklebust 		struct nfs_open_context *ctx = nfs_req_openctx(req);
9709fcd5960STrond Myklebust 		struct inode *inode = d_inode(ctx->dentry);
971d6d6dc7cSFred Isaman 
972e824f99aSTrond Myklebust 		mutex_lock(&NFS_I(inode)->commit_mutex);
973b193a78dSTrond Myklebust 		if (!pnfs_clear_request_commit(req, cinfo)) {
974b193a78dSTrond Myklebust 			nfs_request_remove_commit_list(req, cinfo);
975d6d6dc7cSFred Isaman 		}
976e824f99aSTrond Myklebust 		mutex_unlock(&NFS_I(inode)->commit_mutex);
9770c493b5cSTrond Myklebust 		nfs_folio_clear_commit(nfs_page_to_folio(req));
9788dd37758STrond Myklebust 	}
979e468bae9STrond Myklebust }
980e468bae9STrond Myklebust 
nfs_write_need_commit(struct nfs_pgio_header * hdr)981d45f60c6SWeston Andros Adamson int nfs_write_need_commit(struct nfs_pgio_header *hdr)
9828e821cadSTrond Myklebust {
983c65e6254SWeston Andros Adamson 	if (hdr->verf.committed == NFS_DATA_SYNC)
984d45f60c6SWeston Andros Adamson 		return hdr->lseg == NULL;
985c65e6254SWeston Andros Adamson 	return hdr->verf.committed != NFS_FILE_SYNC;
9868e821cadSTrond Myklebust }
9878e821cadSTrond Myklebust 
nfs_async_write_init(struct nfs_pgio_header * hdr)988919e3bd9STrond Myklebust static void nfs_async_write_init(struct nfs_pgio_header *hdr)
989919e3bd9STrond Myklebust {
990919e3bd9STrond Myklebust 	nfs_io_completion_get(hdr->io_completion);
991919e3bd9STrond Myklebust }
992919e3bd9STrond Myklebust 
nfs_write_completion(struct nfs_pgio_header * hdr)993061ae2edSFred Isaman static void nfs_write_completion(struct nfs_pgio_header *hdr)
9946c75dc0dSFred Isaman {
995ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
9966c75dc0dSFred Isaman 	unsigned long bytes = 0;
9976c75dc0dSFred Isaman 
9986c75dc0dSFred Isaman 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
9996c75dc0dSFred Isaman 		goto out;
1000ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
10016c75dc0dSFred Isaman 	while (!list_empty(&hdr->pages)) {
10026c75dc0dSFred Isaman 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
10036c75dc0dSFred Isaman 
10046c75dc0dSFred Isaman 		bytes += req->wb_bytes;
10056c75dc0dSFred Isaman 		nfs_list_remove_request(req);
10066c75dc0dSFred Isaman 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
10076c75dc0dSFred Isaman 		    (hdr->good_bytes < bytes)) {
1008af887e43STrond Myklebust 			trace_nfs_comp_error(hdr->inode, req, hdr->error);
10090c493b5cSTrond Myklebust 			nfs_mapping_set_error(nfs_page_to_folio(req),
10100c493b5cSTrond Myklebust 					      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:
10240c493b5cSTrond Myklebust 		nfs_page_end_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
nfs_reqs_to_commit(struct nfs_commit_info * cinfo)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
nfs_scan_commit_list(struct list_head * src,struct list_head * dst,struct nfs_commit_info * cinfo,int max)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 	list_for_each_entry_safe(req, tmp, src, wb_list) {
10477ad84aa9STrond Myklebust 		kref_get(&req->wb_kref);
10482ce209c4STrond Myklebust 		if (!nfs_lock_request(req)) {
1049137da553STrond Myklebust 			nfs_release_request(req);
1050137da553STrond Myklebust 			continue;
1051137da553STrond Myklebust 		}
1052ea2cf228SFred Isaman 		nfs_request_remove_commit_list(req, cinfo);
10535d2a9d9dSTrond Myklebust 		clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
10548dd37758STrond Myklebust 		nfs_list_add_request(req, dst);
1055d6d6dc7cSFred Isaman 		ret++;
10561763da12SFred Isaman 		if ((ret == max) && !cinfo->dreq)
1057d6d6dc7cSFred Isaman 			break;
1058e824f99aSTrond Myklebust 		cond_resched();
1059d6d6dc7cSFred Isaman 	}
1060d6d6dc7cSFred Isaman 	return ret;
1061d6d6dc7cSFred Isaman }
10625d2a9d9dSTrond Myklebust EXPORT_SYMBOL_GPL(nfs_scan_commit_list);
1063d6d6dc7cSFred Isaman 
10641da177e4SLinus Torvalds /*
10651da177e4SLinus Torvalds  * nfs_scan_commit - Scan an inode for commit requests
10661da177e4SLinus Torvalds  * @inode: NFS inode to scan
1067ea2cf228SFred Isaman  * @dst: mds destination list
1068ea2cf228SFred Isaman  * @cinfo: mds and ds lists of reqs ready to commit
10691da177e4SLinus Torvalds  *
10701da177e4SLinus Torvalds  * Moves requests from the inode's 'commit' request list.
10711da177e4SLinus Torvalds  * The requests are *not* checked to ensure that they form a contiguous set.
10721da177e4SLinus Torvalds  */
10731763da12SFred Isaman int
nfs_scan_commit(struct inode * inode,struct list_head * dst,struct nfs_commit_info * cinfo)1074ea2cf228SFred Isaman nfs_scan_commit(struct inode *inode, struct list_head *dst,
1075ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
10761da177e4SLinus Torvalds {
1077d6d6dc7cSFred Isaman 	int ret = 0;
1078fb8a1f11STrond Myklebust 
10795cb953d4STrond Myklebust 	if (!atomic_long_read(&cinfo->mds->ncommit))
10805cb953d4STrond Myklebust 		return 0;
1081e824f99aSTrond Myklebust 	mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
10825cb953d4STrond Myklebust 	if (atomic_long_read(&cinfo->mds->ncommit) > 0) {
10838dd37758STrond Myklebust 		const int max = INT_MAX;
1084d6d6dc7cSFred Isaman 
1085ea2cf228SFred Isaman 		ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1086ea2cf228SFred Isaman 					   cinfo, max);
1087ea2cf228SFred Isaman 		ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
1088d6d6dc7cSFred Isaman 	}
1089e824f99aSTrond Myklebust 	mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
1090ff778d02STrond Myklebust 	return ret;
10911da177e4SLinus Torvalds }
1092d6d6dc7cSFred Isaman 
10931da177e4SLinus Torvalds /*
1094e7d39069STrond Myklebust  * Search for an existing write request, and attempt to update
1095e7d39069STrond Myklebust  * it to reflect a new dirty region on a given page.
10961da177e4SLinus Torvalds  *
1097e7d39069STrond Myklebust  * If the attempt fails, then the existing request is flushed out
1098e7d39069STrond Myklebust  * to disk.
10991da177e4SLinus Torvalds  */
nfs_try_to_update_request(struct folio * folio,unsigned int offset,unsigned int bytes)11000c493b5cSTrond Myklebust static struct nfs_page *nfs_try_to_update_request(struct folio *folio,
1101e7d39069STrond Myklebust 						  unsigned int offset,
1102e7d39069STrond Myklebust 						  unsigned int bytes)
11031da177e4SLinus Torvalds {
1104e7d39069STrond Myklebust 	struct nfs_page *req;
1105e7d39069STrond Myklebust 	unsigned int rqend;
1106e7d39069STrond Myklebust 	unsigned int end;
11071da177e4SLinus Torvalds 	int error;
1108277459d2STrond Myklebust 
1109e7d39069STrond Myklebust 	end = offset + bytes;
1110e7d39069STrond Myklebust 
11110c493b5cSTrond Myklebust 	req = nfs_lock_and_join_requests(folio);
1112f6032f21STrond Myklebust 	if (IS_ERR_OR_NULL(req))
1113f6032f21STrond Myklebust 		return req;
11142bfc6e56SWeston Andros Adamson 
1115e7d39069STrond Myklebust 	rqend = req->wb_offset + req->wb_bytes;
1116e7d39069STrond Myklebust 	/*
1117e7d39069STrond Myklebust 	 * Tell the caller to flush out the request if
1118e7d39069STrond Myklebust 	 * the offsets are non-contiguous.
1119e7d39069STrond Myklebust 	 * Note: nfs_flush_incompatible() will already
1120e7d39069STrond Myklebust 	 * have flushed out requests having wrong owners.
1121e7d39069STrond Myklebust 	 */
1122f6032f21STrond Myklebust 	if (offset > rqend || end < req->wb_offset)
1123e7d39069STrond Myklebust 		goto out_flushme;
1124e7d39069STrond Myklebust 
11251da177e4SLinus Torvalds 	/* Okay, the request matches. Update the region */
11261da177e4SLinus Torvalds 	if (offset < req->wb_offset) {
11271da177e4SLinus Torvalds 		req->wb_offset = offset;
11281da177e4SLinus Torvalds 		req->wb_pgbase = offset;
11291da177e4SLinus Torvalds 	}
11301da177e4SLinus Torvalds 	if (end > rqend)
11311da177e4SLinus Torvalds 		req->wb_bytes = end - req->wb_offset;
1132e7d39069STrond Myklebust 	else
1133e7d39069STrond Myklebust 		req->wb_bytes = rqend - req->wb_offset;
113433344e0fSTrond Myklebust 	req->wb_nio = 0;
1135e7d39069STrond Myklebust 	return req;
1136e7d39069STrond Myklebust out_flushme:
1137f6032f21STrond Myklebust 	/*
1138f6032f21STrond Myklebust 	 * Note: we mark the request dirty here because
1139f6032f21STrond Myklebust 	 * nfs_lock_and_join_requests() cannot preserve
1140f6032f21STrond Myklebust 	 * commit flags, so we have to replay the write.
1141f6032f21STrond Myklebust 	 */
1142f6032f21STrond Myklebust 	nfs_mark_request_dirty(req);
1143f6032f21STrond Myklebust 	nfs_unlock_and_release_request(req);
11440c493b5cSTrond Myklebust 	error = nfs_wb_folio(folio_file_mapping(folio)->host, folio);
1145f6032f21STrond Myklebust 	return (error < 0) ? ERR_PTR(error) : NULL;
1146e7d39069STrond Myklebust }
11471da177e4SLinus Torvalds 
1148e7d39069STrond Myklebust /*
1149e7d39069STrond Myklebust  * Try to update an existing write request, or create one if there is none.
1150e7d39069STrond Myklebust  *
1151e7d39069STrond Myklebust  * Note: Should always be called with the Page Lock held to prevent races
1152e7d39069STrond Myklebust  * if we have to add a new request. Also assumes that the caller has
1153e7d39069STrond Myklebust  * already called nfs_flush_incompatible() if necessary.
1154e7d39069STrond Myklebust  */
nfs_setup_write_request(struct nfs_open_context * ctx,struct folio * folio,unsigned int offset,unsigned int bytes)1155e7d39069STrond Myklebust static struct nfs_page *nfs_setup_write_request(struct nfs_open_context *ctx,
11560c493b5cSTrond Myklebust 						struct folio *folio,
11570c493b5cSTrond Myklebust 						unsigned int offset,
11580c493b5cSTrond Myklebust 						unsigned int bytes)
1159e7d39069STrond Myklebust {
1160e7d39069STrond Myklebust 	struct nfs_page *req;
1161e7d39069STrond Myklebust 
11620c493b5cSTrond Myklebust 	req = nfs_try_to_update_request(folio, offset, bytes);
1163e7d39069STrond Myklebust 	if (req != NULL)
1164e7d39069STrond Myklebust 		goto out;
11650c493b5cSTrond Myklebust 	req = nfs_page_create_from_folio(ctx, folio, offset, bytes);
1166e7d39069STrond Myklebust 	if (IS_ERR(req))
1167e7d39069STrond Myklebust 		goto out;
11680c493b5cSTrond Myklebust 	nfs_inode_add_request(req);
1169efc91ed0STrond Myklebust out:
117061e930a9STrond Myklebust 	return req;
11711da177e4SLinus Torvalds }
11721da177e4SLinus Torvalds 
nfs_writepage_setup(struct nfs_open_context * ctx,struct folio * folio,unsigned int offset,unsigned int count)11730c493b5cSTrond Myklebust static int nfs_writepage_setup(struct nfs_open_context *ctx,
11740c493b5cSTrond Myklebust 			       struct folio *folio, unsigned int offset,
11750c493b5cSTrond Myklebust 			       unsigned int count)
1176e7d39069STrond Myklebust {
1177e7d39069STrond Myklebust 	struct nfs_page *req;
1178e7d39069STrond Myklebust 
11790c493b5cSTrond Myklebust 	req = nfs_setup_write_request(ctx, folio, offset, count);
1180e7d39069STrond Myklebust 	if (IS_ERR(req))
1181e7d39069STrond Myklebust 		return PTR_ERR(req);
1182e7d39069STrond Myklebust 	/* Update file length */
11830c493b5cSTrond Myklebust 	nfs_grow_file(folio, offset, count);
1184d72ddcbaSWeston Andros Adamson 	nfs_mark_uptodate(req);
1185a6305ddbSTrond Myklebust 	nfs_mark_request_dirty(req);
11861d1afcbcSTrond Myklebust 	nfs_unlock_and_release_request(req);
1187e7d39069STrond Myklebust 	return 0;
1188e7d39069STrond Myklebust }
1189e7d39069STrond Myklebust 
nfs_flush_incompatible(struct file * file,struct folio * folio)11900c493b5cSTrond Myklebust int nfs_flush_incompatible(struct file *file, struct folio *folio)
11911da177e4SLinus Torvalds {
1192cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
11932a369153STrond Myklebust 	struct nfs_lock_context *l_ctx;
119417b985deSJeff Layton 	struct file_lock_context *flctx = locks_inode_context(file_inode(file));
11951da177e4SLinus Torvalds 	struct nfs_page	*req;
11961a54533eSTrond Myklebust 	int do_flush, status;
11971da177e4SLinus Torvalds 	/*
11981da177e4SLinus Torvalds 	 * Look for a request corresponding to this page. If there
11991da177e4SLinus Torvalds 	 * is one, and it belongs to another file, we flush it out
12001da177e4SLinus Torvalds 	 * before we try to copy anything into the page. Do this
12011da177e4SLinus Torvalds 	 * due to the lack of an ACCESS-type call in NFSv2.
12021da177e4SLinus Torvalds 	 * Also do the same if we find a request from an existing
12031da177e4SLinus Torvalds 	 * dropped page.
12041da177e4SLinus Torvalds 	 */
12051a54533eSTrond Myklebust 	do {
12060c493b5cSTrond Myklebust 		req = nfs_folio_find_head_request(folio);
12071a54533eSTrond Myklebust 		if (req == NULL)
12081a54533eSTrond Myklebust 			return 0;
12092a369153STrond Myklebust 		l_ctx = req->wb_lock_context;
12100c493b5cSTrond Myklebust 		do_flush = nfs_page_to_folio(req) != folio ||
12119fcd5960STrond Myklebust 			   !nfs_match_open_context(nfs_req_openctx(req), ctx);
1212bd61e0a9SJeff Layton 		if (l_ctx && flctx &&
1213bd61e0a9SJeff Layton 		    !(list_empty_careful(&flctx->flc_posix) &&
1214bd61e0a9SJeff Layton 		      list_empty_careful(&flctx->flc_flock))) {
1215d51fdb87SNeilBrown 			do_flush |= l_ctx->lockowner != current->files;
12165263e31eSJeff Layton 		}
12171da177e4SLinus Torvalds 		nfs_release_request(req);
12181a54533eSTrond Myklebust 		if (!do_flush)
12191a54533eSTrond Myklebust 			return 0;
12200c493b5cSTrond Myklebust 		status = nfs_wb_folio(folio_file_mapping(folio)->host, folio);
12211a54533eSTrond Myklebust 	} while (status == 0);
12221a54533eSTrond Myklebust 	return status;
12231da177e4SLinus Torvalds }
12241da177e4SLinus Torvalds 
12251da177e4SLinus Torvalds /*
1226dc24826bSAndy Adamson  * Avoid buffered writes when a open context credential's key would
1227dc24826bSAndy Adamson  * expire soon.
1228dc24826bSAndy Adamson  *
1229dc24826bSAndy Adamson  * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1230dc24826bSAndy Adamson  *
1231dc24826bSAndy Adamson  * Return 0 and set a credential flag which triggers the inode to flush
1232dc24826bSAndy Adamson  * and performs  NFS_FILE_SYNC writes if the key will expired within
1233dc24826bSAndy Adamson  * RPC_KEY_EXPIRE_TIMEO.
1234dc24826bSAndy Adamson  */
1235dc24826bSAndy Adamson int
nfs_key_timeout_notify(struct file * filp,struct inode * inode)1236dc24826bSAndy Adamson nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1237dc24826bSAndy Adamson {
1238dc24826bSAndy Adamson 	struct nfs_open_context *ctx = nfs_file_open_context(filp);
1239dc24826bSAndy Adamson 
1240ddf529eeSNeilBrown 	if (nfs_ctx_key_to_expire(ctx, inode) &&
1241ca05cbaeSTrond Myklebust 	    !rcu_access_pointer(ctx->ll_cred))
1242ddf529eeSNeilBrown 		/* Already expired! */
1243ddf529eeSNeilBrown 		return -EACCES;
1244ddf529eeSNeilBrown 	return 0;
1245dc24826bSAndy Adamson }
1246dc24826bSAndy Adamson 
1247dc24826bSAndy Adamson /*
1248dc24826bSAndy Adamson  * Test if the open context credential key is marked to expire soon.
1249dc24826bSAndy Adamson  */
nfs_ctx_key_to_expire(struct nfs_open_context * ctx,struct inode * inode)1250ce52914eSScott Mayhew bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
1251dc24826bSAndy Adamson {
1252ce52914eSScott Mayhew 	struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1253ca05cbaeSTrond Myklebust 	struct rpc_cred *cred, *new, *old = NULL;
1254ddf529eeSNeilBrown 	struct auth_cred acred = {
1255a52458b4SNeilBrown 		.cred = ctx->cred,
1256ddf529eeSNeilBrown 	};
1257ca05cbaeSTrond Myklebust 	bool ret = false;
1258ce52914eSScott Mayhew 
1259ca05cbaeSTrond Myklebust 	rcu_read_lock();
1260ca05cbaeSTrond Myklebust 	cred = rcu_dereference(ctx->ll_cred);
1261ca05cbaeSTrond Myklebust 	if (cred && !(cred->cr_ops->crkey_timeout &&
1262ca05cbaeSTrond Myklebust 		      cred->cr_ops->crkey_timeout(cred)))
1263ca05cbaeSTrond Myklebust 		goto out;
1264ca05cbaeSTrond Myklebust 	rcu_read_unlock();
1265ca05cbaeSTrond Myklebust 
1266ca05cbaeSTrond Myklebust 	new = auth->au_ops->lookup_cred(auth, &acred, 0);
1267ca05cbaeSTrond Myklebust 	if (new == cred) {
1268ca05cbaeSTrond Myklebust 		put_rpccred(new);
1269ddf529eeSNeilBrown 		return true;
1270ca05cbaeSTrond Myklebust 	}
1271ca05cbaeSTrond Myklebust 	if (IS_ERR_OR_NULL(new)) {
1272ca05cbaeSTrond Myklebust 		new = NULL;
1273ca05cbaeSTrond Myklebust 		ret = true;
1274ca05cbaeSTrond Myklebust 	} else if (new->cr_ops->crkey_timeout &&
1275ca05cbaeSTrond Myklebust 		   new->cr_ops->crkey_timeout(new))
1276ca05cbaeSTrond Myklebust 		ret = true;
1277ca05cbaeSTrond Myklebust 
1278ca05cbaeSTrond Myklebust 	rcu_read_lock();
1279ca05cbaeSTrond Myklebust 	old = rcu_dereference_protected(xchg(&ctx->ll_cred,
1280ca05cbaeSTrond Myklebust 					     RCU_INITIALIZER(new)), 1);
1281ca05cbaeSTrond Myklebust out:
1282ca05cbaeSTrond Myklebust 	rcu_read_unlock();
1283ca05cbaeSTrond Myklebust 	put_rpccred(old);
1284ca05cbaeSTrond Myklebust 	return ret;
1285dc24826bSAndy Adamson }
1286dc24826bSAndy Adamson 
1287dc24826bSAndy Adamson /*
12885d47a356STrond Myklebust  * If the page cache is marked as unsafe or invalid, then we can't rely on
12895d47a356STrond Myklebust  * the PageUptodate() flag. In this case, we will need to turn off
12905d47a356STrond Myklebust  * write optimisations that depend on the page contents being correct.
12915d47a356STrond Myklebust  */
nfs_folio_write_uptodate(struct folio * folio,unsigned int pagelen)12920c493b5cSTrond Myklebust static bool nfs_folio_write_uptodate(struct folio *folio, unsigned int pagelen)
12935d47a356STrond Myklebust {
12940c493b5cSTrond Myklebust 	struct inode *inode = folio_file_mapping(folio)->host;
1295d529ef83SJeff Layton 	struct nfs_inode *nfsi = NFS_I(inode);
1296d529ef83SJeff Layton 
12978d197a56STrond Myklebust 	if (nfs_have_delegated_attributes(inode))
12988d197a56STrond Myklebust 		goto out;
1299fc9dc401STrond Myklebust 	if (nfsi->cache_validity &
130013c0b082STrond Myklebust 	    (NFS_INO_INVALID_CHANGE | NFS_INO_INVALID_SIZE))
1301d529ef83SJeff Layton 		return false;
13024db72b40SJeff Layton 	smp_rmb();
1303fc9dc401STrond Myklebust 	if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags) && pagelen != 0)
13048d197a56STrond Myklebust 		return false;
13058d197a56STrond Myklebust out:
1306fc9dc401STrond Myklebust 	if (nfsi->cache_validity & NFS_INO_INVALID_DATA && pagelen != 0)
130718dd78c4SScott Mayhew 		return false;
13080c493b5cSTrond Myklebust 	return folio_test_uptodate(folio) != 0;
13095d47a356STrond Myklebust }
13105d47a356STrond Myklebust 
13115263e31eSJeff Layton static bool
is_whole_file_wrlock(struct file_lock * fl)13125263e31eSJeff Layton is_whole_file_wrlock(struct file_lock *fl)
13135263e31eSJeff Layton {
13145263e31eSJeff Layton 	return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
13155263e31eSJeff Layton 			fl->fl_type == F_WRLCK;
13165263e31eSJeff Layton }
13175263e31eSJeff Layton 
1318c7559663SScott Mayhew /* If we know the page is up to date, and we're not using byte range locks (or
1319c7559663SScott Mayhew  * if we have the whole file locked for writing), it may be more efficient to
1320c7559663SScott Mayhew  * extend the write to cover the entire page in order to avoid fragmentation
1321c7559663SScott Mayhew  * inefficiencies.
1322c7559663SScott Mayhew  *
1323263b4509SScott Mayhew  * If the file is opened for synchronous writes then we can just skip the rest
1324263b4509SScott Mayhew  * of the checks.
1325c7559663SScott Mayhew  */
nfs_can_extend_write(struct file * file,struct folio * folio,unsigned int pagelen)13260c493b5cSTrond Myklebust static int nfs_can_extend_write(struct file *file, struct folio *folio,
13270c493b5cSTrond Myklebust 				unsigned int pagelen)
1328c7559663SScott Mayhew {
13290c493b5cSTrond Myklebust 	struct inode *inode = file_inode(file);
133017b985deSJeff Layton 	struct file_lock_context *flctx = locks_inode_context(inode);
13315263e31eSJeff Layton 	struct file_lock *fl;
13320c493b5cSTrond Myklebust 	int ret;
13335263e31eSJeff Layton 
1334c7559663SScott Mayhew 	if (file->f_flags & O_DSYNC)
1335c7559663SScott Mayhew 		return 0;
13360c493b5cSTrond Myklebust 	if (!nfs_folio_write_uptodate(folio, pagelen))
1337263b4509SScott Mayhew 		return 0;
1338c7559663SScott Mayhew 	if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1339c7559663SScott Mayhew 		return 1;
1340bd61e0a9SJeff Layton 	if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1341bd61e0a9SJeff Layton 		       list_empty_careful(&flctx->flc_posix)))
13428fa4592aSTrond Myklebust 		return 1;
13435263e31eSJeff Layton 
13445263e31eSJeff Layton 	/* Check to see if there are whole file write locks */
13455263e31eSJeff Layton 	ret = 0;
13466109c850SJeff Layton 	spin_lock(&flctx->flc_lock);
1347bd61e0a9SJeff Layton 	if (!list_empty(&flctx->flc_posix)) {
1348bd61e0a9SJeff Layton 		fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1349bd61e0a9SJeff Layton 					fl_list);
1350bd61e0a9SJeff Layton 		if (is_whole_file_wrlock(fl))
13515263e31eSJeff Layton 			ret = 1;
1352bd61e0a9SJeff Layton 	} else if (!list_empty(&flctx->flc_flock)) {
13535263e31eSJeff Layton 		fl = list_first_entry(&flctx->flc_flock, struct file_lock,
13545263e31eSJeff Layton 					fl_list);
13555263e31eSJeff Layton 		if (fl->fl_type == F_WRLCK)
13565263e31eSJeff Layton 			ret = 1;
13575263e31eSJeff Layton 	}
13586109c850SJeff Layton 	spin_unlock(&flctx->flc_lock);
13595263e31eSJeff Layton 	return ret;
1360c7559663SScott Mayhew }
1361c7559663SScott Mayhew 
13625d47a356STrond Myklebust /*
13631da177e4SLinus Torvalds  * Update and possibly write a cached page of an NFS file.
13641da177e4SLinus Torvalds  *
13651da177e4SLinus Torvalds  * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
13661da177e4SLinus Torvalds  * things with a page scheduled for an RPC call (e.g. invalidate it).
13671da177e4SLinus Torvalds  */
nfs_update_folio(struct file * file,struct folio * folio,unsigned int offset,unsigned int count)13680c493b5cSTrond Myklebust int nfs_update_folio(struct file *file, struct folio *folio,
13691da177e4SLinus Torvalds 		     unsigned int offset, unsigned int count)
13701da177e4SLinus Torvalds {
1371cd3758e3STrond Myklebust 	struct nfs_open_context *ctx = nfs_file_open_context(file);
13720c493b5cSTrond Myklebust 	struct address_space *mapping = folio_file_mapping(folio);
1373d2ceb7e5SBenjamin Coddington 	struct inode *inode = mapping->host;
13740c493b5cSTrond Myklebust 	unsigned int pagelen = nfs_folio_length(folio);
13751da177e4SLinus Torvalds 	int		status = 0;
13761da177e4SLinus Torvalds 
137791d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
137891d5b470SChuck Lever 
13790c493b5cSTrond Myklebust 	dprintk("NFS:       nfs_update_folio(%pD2 %d@%lld)\n", file, count,
13800c493b5cSTrond Myklebust 		(long long)(folio_file_pos(folio) + offset));
13811da177e4SLinus Torvalds 
1382149a4fddSBenjamin Coddington 	if (!count)
1383149a4fddSBenjamin Coddington 		goto out;
1384149a4fddSBenjamin Coddington 
13850c493b5cSTrond Myklebust 	if (nfs_can_extend_write(file, folio, pagelen)) {
1386fc9dc401STrond Myklebust 		count = max(count + offset, pagelen);
13871da177e4SLinus Torvalds 		offset = 0;
13881da177e4SLinus Torvalds 	}
13891da177e4SLinus Torvalds 
13900c493b5cSTrond Myklebust 	status = nfs_writepage_setup(ctx, folio, offset, count);
139103fa9e84STrond Myklebust 	if (status < 0)
1392d2ceb7e5SBenjamin Coddington 		nfs_set_pageerror(mapping);
1393149a4fddSBenjamin Coddington out:
13940c493b5cSTrond Myklebust 	dprintk("NFS:       nfs_update_folio returns %d (isize %lld)\n",
13951da177e4SLinus Torvalds 			status, (long long)i_size_read(inode));
13961da177e4SLinus Torvalds 	return status;
13971da177e4SLinus Torvalds }
13981da177e4SLinus Torvalds 
flush_task_priority(int how)13993ff7576dSTrond Myklebust static int flush_task_priority(int how)
14001da177e4SLinus Torvalds {
14011da177e4SLinus Torvalds 	switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
14021da177e4SLinus Torvalds 		case FLUSH_HIGHPRI:
14031da177e4SLinus Torvalds 			return RPC_PRIORITY_HIGH;
14041da177e4SLinus Torvalds 		case FLUSH_LOWPRI:
14051da177e4SLinus Torvalds 			return RPC_PRIORITY_LOW;
14061da177e4SLinus Torvalds 	}
14071da177e4SLinus Torvalds 	return RPC_PRIORITY_NORMAL;
14081da177e4SLinus Torvalds }
14091da177e4SLinus Torvalds 
nfs_initiate_write(struct nfs_pgio_header * hdr,struct rpc_message * msg,const struct nfs_rpc_ops * rpc_ops,struct rpc_task_setup * task_setup_data,int how)1410d45f60c6SWeston Andros Adamson static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1411d45f60c6SWeston Andros Adamson 			       struct rpc_message *msg,
1412abde71f4STom Haynes 			       const struct nfs_rpc_ops *rpc_ops,
14131ed26f33SAnna Schumaker 			       struct rpc_task_setup *task_setup_data, int how)
14141da177e4SLinus Torvalds {
14153ff7576dSTrond Myklebust 	int priority = flush_task_priority(how);
14161da177e4SLinus Torvalds 
14178db55a03SNeilBrown 	if (IS_SWAPFILE(hdr->inode))
14188db55a03SNeilBrown 		task_setup_data->flags |= RPC_TASK_SWAPPER;
14191ed26f33SAnna Schumaker 	task_setup_data->priority = priority;
1420fb91fb0eSAnna Schumaker 	rpc_ops->write_setup(hdr, msg, &task_setup_data->rpc_client);
14215bb2a7cbSTrond Myklebust 	trace_nfs_initiate_write(hdr);
1422275acaafSTrond Myklebust }
1423275acaafSTrond Myklebust 
14246d884e8fSFred /* If a nfs_flush_* function fails, it should remove reqs from @head and
14256d884e8fSFred  * call this on each, which will prepare them to be retried on next
14266d884e8fSFred  * writeback using standard nfs.
14276d884e8fSFred  */
nfs_redirty_request(struct nfs_page * req)14286d884e8fSFred static void nfs_redirty_request(struct nfs_page *req)
14296d884e8fSFred {
14306dd85e83STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(nfs_page_to_inode(req));
143167f4b5dcSTrond Myklebust 
143233344e0fSTrond Myklebust 	/* Bump the transmission count */
143333344e0fSTrond Myklebust 	req->wb_nio++;
14346d884e8fSFred 	nfs_mark_request_dirty(req);
143567f4b5dcSTrond Myklebust 	atomic_long_inc(&nfsi->redirtied_pages);
14360c493b5cSTrond Myklebust 	nfs_page_end_writeback(req);
14373aff4ebbSTrond Myklebust 	nfs_release_request(req);
14386d884e8fSFred }
14396d884e8fSFred 
nfs_async_write_error(struct list_head * head,int error)1440df3accb8STrond Myklebust static void nfs_async_write_error(struct list_head *head, int error)
14416c75dc0dSFred Isaman {
14426c75dc0dSFred Isaman 	struct nfs_page	*req;
14436c75dc0dSFred Isaman 
14446c75dc0dSFred Isaman 	while (!list_empty(head)) {
14456c75dc0dSFred Isaman 		req = nfs_list_entry(head->next);
14466c75dc0dSFred Isaman 		nfs_list_remove_request(req);
1447cea9ba72STrond Myklebust 		if (nfs_error_is_fatal_on_server(error))
14486fbda89bSTrond Myklebust 			nfs_write_error(req, error);
14496fbda89bSTrond Myklebust 		else
14506c75dc0dSFred Isaman 			nfs_redirty_request(req);
14516c75dc0dSFred Isaman 	}
14526c75dc0dSFred Isaman }
14536c75dc0dSFred Isaman 
nfs_async_write_reschedule_io(struct nfs_pgio_header * hdr)1454dc602dd7STrond Myklebust static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1455dc602dd7STrond Myklebust {
1456df3accb8STrond Myklebust 	nfs_async_write_error(&hdr->pages, 0);
1457dc602dd7STrond Myklebust }
1458dc602dd7STrond Myklebust 
1459061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
1460919e3bd9STrond Myklebust 	.init_hdr = nfs_async_write_init,
1461061ae2edSFred Isaman 	.error_cleanup = nfs_async_write_error,
1462061ae2edSFred Isaman 	.completion = nfs_write_completion,
1463dc602dd7STrond Myklebust 	.reschedule_io = nfs_async_write_reschedule_io,
1464061ae2edSFred Isaman };
1465061ae2edSFred Isaman 
nfs_pageio_init_write(struct nfs_pageio_descriptor * pgio,struct inode * inode,int ioflags,bool force_mds,const struct nfs_pgio_completion_ops * compl_ops)146657208fa7SBryan Schumaker void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
1467a20c93e3SChristoph Hellwig 			       struct inode *inode, int ioflags, bool force_mds,
1468061ae2edSFred Isaman 			       const struct nfs_pgio_completion_ops *compl_ops)
14691751c363STrond Myklebust {
1470a20c93e3SChristoph Hellwig 	struct nfs_server *server = NFS_SERVER(inode);
147141d8d5b7SAnna Schumaker 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
1472a20c93e3SChristoph Hellwig 
1473a20c93e3SChristoph Hellwig #ifdef CONFIG_NFS_V4_1
1474a20c93e3SChristoph Hellwig 	if (server->pnfs_curr_ld && !force_mds)
1475a20c93e3SChristoph Hellwig 		pg_ops = server->pnfs_curr_ld->pg_write_ops;
1476a20c93e3SChristoph Hellwig #endif
14774a0de55cSAnna Schumaker 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
14783bde7afdSTrond Myklebust 			server->wsize, ioflags);
14791751c363STrond Myklebust }
1480ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
14811751c363STrond Myklebust 
nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor * pgio)1482dce81290STrond Myklebust void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1483dce81290STrond Myklebust {
1484a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *mirror;
1485a7d42ddbSWeston Andros Adamson 
14866f29b9bbSKinglong Mee 	if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
14876f29b9bbSKinglong Mee 		pgio->pg_ops->pg_cleanup(pgio);
14886f29b9bbSKinglong Mee 
148941d8d5b7SAnna Schumaker 	pgio->pg_ops = &nfs_pgio_rw_ops;
1490a7d42ddbSWeston Andros Adamson 
1491a7d42ddbSWeston Andros Adamson 	nfs_pageio_stop_mirroring(pgio);
1492a7d42ddbSWeston Andros Adamson 
1493a7d42ddbSWeston Andros Adamson 	mirror = &pgio->pg_mirrors[0];
1494a7d42ddbSWeston Andros Adamson 	mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
1495dce81290STrond Myklebust }
14961f945357STrond Myklebust EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
1497dce81290STrond Myklebust 
14981da177e4SLinus Torvalds 
nfs_commit_prepare(struct rpc_task * task,void * calldata)14990b7c0153SFred Isaman void nfs_commit_prepare(struct rpc_task *task, void *calldata)
15000b7c0153SFred Isaman {
15010b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
15020b7c0153SFred Isaman 
15030b7c0153SFred Isaman 	NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
15040b7c0153SFred Isaman }
15050b7c0153SFred Isaman 
nfs_writeback_check_extend(struct nfs_pgio_header * hdr,struct nfs_fattr * fattr)1506a08a8cd3STrond Myklebust static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1507a08a8cd3STrond Myklebust 		struct nfs_fattr *fattr)
1508a08a8cd3STrond Myklebust {
1509a08a8cd3STrond Myklebust 	struct nfs_pgio_args *argp = &hdr->args;
1510a08a8cd3STrond Myklebust 	struct nfs_pgio_res *resp = &hdr->res;
15112b83d3deSTrond Myklebust 	u64 size = argp->offset + resp->count;
1512a08a8cd3STrond Myklebust 
1513a08a8cd3STrond Myklebust 	if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
15142b83d3deSTrond Myklebust 		fattr->size = size;
15152b83d3deSTrond Myklebust 	if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
15162b83d3deSTrond Myklebust 		fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
1517a08a8cd3STrond Myklebust 		return;
15182b83d3deSTrond Myklebust 	}
15192b83d3deSTrond Myklebust 	if (size != fattr->size)
1520a08a8cd3STrond Myklebust 		return;
1521a08a8cd3STrond Myklebust 	/* Set attribute barrier */
1522a08a8cd3STrond Myklebust 	nfs_fattr_set_barrier(fattr);
15232b83d3deSTrond Myklebust 	/* ...and update size */
15242b83d3deSTrond Myklebust 	fattr->valid |= NFS_ATTR_FATTR_SIZE;
1525a08a8cd3STrond Myklebust }
1526a08a8cd3STrond Myklebust 
nfs_writeback_update_inode(struct nfs_pgio_header * hdr)1527a08a8cd3STrond Myklebust void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1528a08a8cd3STrond Myklebust {
15292b83d3deSTrond Myklebust 	struct nfs_fattr *fattr = &hdr->fattr;
1530a08a8cd3STrond Myklebust 	struct inode *inode = hdr->inode;
1531a08a8cd3STrond Myklebust 
1532a08a8cd3STrond Myklebust 	spin_lock(&inode->i_lock);
1533a08a8cd3STrond Myklebust 	nfs_writeback_check_extend(hdr, fattr);
1534a08a8cd3STrond Myklebust 	nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1535a08a8cd3STrond Myklebust 	spin_unlock(&inode->i_lock);
1536a08a8cd3STrond Myklebust }
1537a08a8cd3STrond Myklebust EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1538a08a8cd3STrond Myklebust 
15391da177e4SLinus Torvalds /*
15401da177e4SLinus Torvalds  * This function is called when the WRITE call is complete.
15411da177e4SLinus Torvalds  */
nfs_writeback_done(struct rpc_task * task,struct nfs_pgio_header * hdr,struct inode * inode)1542d45f60c6SWeston Andros Adamson static int nfs_writeback_done(struct rpc_task *task,
1543d45f60c6SWeston Andros Adamson 			      struct nfs_pgio_header *hdr,
15440eecb214SAnna Schumaker 			      struct inode *inode)
15451da177e4SLinus Torvalds {
1546788e7a89STrond Myklebust 	int status;
15471da177e4SLinus Torvalds 
1548f551e44fSChuck Lever 	/*
1549f551e44fSChuck Lever 	 * ->write_done will attempt to use post-op attributes to detect
1550f551e44fSChuck Lever 	 * conflicting writes by other clients.  A strict interpretation
1551f551e44fSChuck Lever 	 * of close-to-open would allow us to continue caching even if
1552f551e44fSChuck Lever 	 * another writer had changed the file, but some applications
1553f551e44fSChuck Lever 	 * depend on tighter cache coherency when writing.
1554f551e44fSChuck Lever 	 */
1555d45f60c6SWeston Andros Adamson 	status = NFS_PROTO(inode)->write_done(task, hdr);
1556788e7a89STrond Myklebust 	if (status != 0)
15570eecb214SAnna Schumaker 		return status;
15588224b273SChuck Lever 
1559d45f60c6SWeston Andros Adamson 	nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
15605bb2a7cbSTrond Myklebust 	trace_nfs_writeback_done(task, hdr);
156191d5b470SChuck Lever 
156269d96651SJeff Layton 	if (task->tk_status >= 0) {
156369d96651SJeff Layton 		enum nfs3_stable_how committed = hdr->res.verf->committed;
156469d96651SJeff Layton 
156569d96651SJeff Layton 		if (committed == NFS_UNSTABLE) {
156669d96651SJeff Layton 			/*
156769d96651SJeff Layton 			 * We have some uncommitted data on the server at
156869d96651SJeff Layton 			 * this point, so ensure that we keep track of that
156969d96651SJeff Layton 			 * fact irrespective of what later writes do.
157069d96651SJeff Layton 			 */
157169d96651SJeff Layton 			set_bit(NFS_IOHDR_UNSTABLE_WRITES, &hdr->flags);
157269d96651SJeff Layton 		}
157369d96651SJeff Layton 
157469d96651SJeff Layton 		if (committed < hdr->args.stable) {
15751da177e4SLinus Torvalds 			/* We tried a write call, but the server did not
15761da177e4SLinus Torvalds 			 * commit data to stable storage even though we
15771da177e4SLinus Torvalds 			 * requested it.
15781da177e4SLinus Torvalds 			 * Note: There is a known bug in Tru64 < 5.0 in which
15791da177e4SLinus Torvalds 			 *	 the server reports NFS_DATA_SYNC, but performs
15801da177e4SLinus Torvalds 			 *	 NFS_FILE_SYNC. We therefore implement this checking
15811da177e4SLinus Torvalds 			 *	 as a dprintk() in order to avoid filling syslog.
15821da177e4SLinus Torvalds 			 */
15831da177e4SLinus Torvalds 			static unsigned long    complain;
15841da177e4SLinus Torvalds 
1585a69aef14SFred Isaman 			/* Note this will print the MDS for a DS write */
15861da177e4SLinus Torvalds 			if (time_before(complain, jiffies)) {
15871da177e4SLinus Torvalds 				dprintk("NFS:       faulty NFS server %s:"
15881da177e4SLinus Torvalds 					" (committed = %d) != (stable = %d)\n",
1589cd841605SFred Isaman 					NFS_SERVER(inode)->nfs_client->cl_hostname,
159069d96651SJeff Layton 					committed, hdr->args.stable);
15911da177e4SLinus Torvalds 				complain = jiffies + 300 * HZ;
15921da177e4SLinus Torvalds 			}
15931da177e4SLinus Torvalds 		}
159469d96651SJeff Layton 	}
15951f2edbe3STrond Myklebust 
15961f2edbe3STrond Myklebust 	/* Deal with the suid/sgid bit corner case */
159716e14375STrond Myklebust 	if (nfs_should_remove_suid(inode)) {
159816e14375STrond Myklebust 		spin_lock(&inode->i_lock);
1599720869ebSTrond Myklebust 		nfs_set_cache_invalid(inode, NFS_INO_INVALID_MODE);
160016e14375STrond Myklebust 		spin_unlock(&inode->i_lock);
160116e14375STrond Myklebust 	}
16020eecb214SAnna Schumaker 	return 0;
16030eecb214SAnna Schumaker }
16040eecb214SAnna Schumaker 
16050eecb214SAnna Schumaker /*
16060eecb214SAnna Schumaker  * This function is called when the WRITE call is complete.
16070eecb214SAnna Schumaker  */
nfs_writeback_result(struct rpc_task * task,struct nfs_pgio_header * hdr)1608d45f60c6SWeston Andros Adamson static void nfs_writeback_result(struct rpc_task *task,
1609d45f60c6SWeston Andros Adamson 				 struct nfs_pgio_header *hdr)
16100eecb214SAnna Schumaker {
1611d45f60c6SWeston Andros Adamson 	struct nfs_pgio_args	*argp = &hdr->args;
1612d45f60c6SWeston Andros Adamson 	struct nfs_pgio_res	*resp = &hdr->res;
16131f2edbe3STrond Myklebust 
16141f2edbe3STrond Myklebust 	if (resp->count < argp->count) {
16151da177e4SLinus Torvalds 		static unsigned long    complain;
16161da177e4SLinus Torvalds 
16176c75dc0dSFred Isaman 		/* This a short write! */
1618d45f60c6SWeston Andros Adamson 		nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
161991d5b470SChuck Lever 
16201da177e4SLinus Torvalds 		/* Has the server at least made some progress? */
16216c75dc0dSFred Isaman 		if (resp->count == 0) {
16226c75dc0dSFred Isaman 			if (time_before(complain, jiffies)) {
16236c75dc0dSFred Isaman 				printk(KERN_WARNING
16246c75dc0dSFred Isaman 				       "NFS: Server wrote zero bytes, expected %u.\n",
16256c75dc0dSFred Isaman 				       argp->count);
16266c75dc0dSFred Isaman 				complain = jiffies + 300 * HZ;
16276c75dc0dSFred Isaman 			}
1628d45f60c6SWeston Andros Adamson 			nfs_set_pgio_error(hdr, -EIO, argp->offset);
16296c75dc0dSFred Isaman 			task->tk_status = -EIO;
16306c75dc0dSFred Isaman 			return;
16316c75dc0dSFred Isaman 		}
1632f8417b48SKinglong Mee 
1633f8417b48SKinglong Mee 		/* For non rpc-based layout drivers, retry-through-MDS */
1634f8417b48SKinglong Mee 		if (!task->tk_ops) {
1635f8417b48SKinglong Mee 			hdr->pnfs_error = -EAGAIN;
1636f8417b48SKinglong Mee 			return;
1637f8417b48SKinglong Mee 		}
1638f8417b48SKinglong Mee 
16391da177e4SLinus Torvalds 		/* Was this an NFSv2 write or an NFSv3 stable write? */
16401da177e4SLinus Torvalds 		if (resp->verf->committed != NFS_UNSTABLE) {
16411da177e4SLinus Torvalds 			/* Resend from where the server left off */
1642d45f60c6SWeston Andros Adamson 			hdr->mds_offset += resp->count;
16431da177e4SLinus Torvalds 			argp->offset += resp->count;
16441da177e4SLinus Torvalds 			argp->pgbase += resp->count;
16451da177e4SLinus Torvalds 			argp->count -= resp->count;
16461da177e4SLinus Torvalds 		} else {
16471da177e4SLinus Torvalds 			/* Resend as a stable write in order to avoid
16481da177e4SLinus Torvalds 			 * headaches in the case of a server crash.
16491da177e4SLinus Torvalds 			 */
16501da177e4SLinus Torvalds 			argp->stable = NFS_FILE_SYNC;
16511da177e4SLinus Torvalds 		}
16528c9cb714STrond Myklebust 		resp->count = 0;
16538c9cb714STrond Myklebust 		resp->verf->committed = 0;
1654d00c5d43STrond Myklebust 		rpc_restart_call_prepare(task);
16551da177e4SLinus Torvalds 	}
16561da177e4SLinus Torvalds }
16571da177e4SLinus Torvalds 
wait_on_commit(struct nfs_mds_commit_info * cinfo)1658af7cf057STrond Myklebust static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
165971d0a611STrond Myklebust {
1660723c921eSPeter Zijlstra 	return wait_var_event_killable(&cinfo->rpcs_out,
1661723c921eSPeter Zijlstra 				       !atomic_read(&cinfo->rpcs_out));
1662af7cf057STrond Myklebust }
1663af7cf057STrond Myklebust 
nfs_commit_begin(struct nfs_mds_commit_info * cinfo)1664e25447c3SJosef Bacik void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1665af7cf057STrond Myklebust {
1666af7cf057STrond Myklebust 	atomic_inc(&cinfo->rpcs_out);
1667af7cf057STrond Myklebust }
1668af7cf057STrond Myklebust 
nfs_commit_end(struct nfs_mds_commit_info * cinfo)1669133a48abSTrond Myklebust bool nfs_commit_end(struct nfs_mds_commit_info *cinfo)
1670af7cf057STrond Myklebust {
1671133a48abSTrond Myklebust 	if (atomic_dec_and_test(&cinfo->rpcs_out)) {
1672723c921eSPeter Zijlstra 		wake_up_var(&cinfo->rpcs_out);
1673133a48abSTrond Myklebust 		return true;
1674133a48abSTrond Myklebust 	}
1675133a48abSTrond Myklebust 	return false;
167671d0a611STrond Myklebust }
167771d0a611STrond Myklebust 
nfs_commitdata_release(struct nfs_commit_data * data)16780b7c0153SFred Isaman void nfs_commitdata_release(struct nfs_commit_data *data)
16791da177e4SLinus Torvalds {
16800b7c0153SFred Isaman 	put_nfs_open_context(data->context);
16810b7c0153SFred Isaman 	nfs_commit_free(data);
16821da177e4SLinus Torvalds }
1683e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_commitdata_release);
16841da177e4SLinus Torvalds 
nfs_initiate_commit(struct rpc_clnt * clnt,struct nfs_commit_data * data,const struct nfs_rpc_ops * nfs_ops,const struct rpc_call_ops * call_ops,int how,int flags)16850b7c0153SFred Isaman int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
1686c36aae9aSPeng Tao 			const struct nfs_rpc_ops *nfs_ops,
16879ace33cdSFred Isaman 			const struct rpc_call_ops *call_ops,
16889f0ec176SAndy Adamson 			int how, int flags)
16891da177e4SLinus Torvalds {
169007737691STrond Myklebust 	struct rpc_task *task;
16919ace33cdSFred Isaman 	int priority = flush_task_priority(how);
1692bdc7f021STrond Myklebust 	struct rpc_message msg = {
1693bdc7f021STrond Myklebust 		.rpc_argp = &data->args,
1694bdc7f021STrond Myklebust 		.rpc_resp = &data->res,
16959ace33cdSFred Isaman 		.rpc_cred = data->cred,
1696bdc7f021STrond Myklebust 	};
169784115e1cSTrond Myklebust 	struct rpc_task_setup task_setup_data = {
169807737691STrond Myklebust 		.task = &data->task,
16999ace33cdSFred Isaman 		.rpc_client = clnt,
1700bdc7f021STrond Myklebust 		.rpc_message = &msg,
17019ace33cdSFred Isaman 		.callback_ops = call_ops,
170284115e1cSTrond Myklebust 		.callback_data = data,
1703101070caSTrond Myklebust 		.workqueue = nfsiod_workqueue,
17044fa7ef69STrond Myklebust 		.flags = RPC_TASK_ASYNC | flags,
17053ff7576dSTrond Myklebust 		.priority = priority,
170684115e1cSTrond Myklebust 	};
1707118f09edSOlga Kornievskaia 
1708118f09edSOlga Kornievskaia 	if (nfs_server_capable(data->inode, NFS_CAP_MOVEABLE))
1709118f09edSOlga Kornievskaia 		task_setup_data.flags |= RPC_TASK_MOVEABLE;
1710118f09edSOlga Kornievskaia 
1711788e7a89STrond Myklebust 	/* Set up the initial task struct.  */
1712e9ae1ee2SAnna Schumaker 	nfs_ops->commit_setup(data, &msg, &task_setup_data.rpc_client);
17138224b273SChuck Lever 	trace_nfs_initiate_commit(data);
17141da177e4SLinus Torvalds 
1715b4839ebeSKinglong Mee 	dprintk("NFS: initiated commit call\n");
1716bdc7f021STrond Myklebust 
171707737691STrond Myklebust 	task = rpc_run_task(&task_setup_data);
1718dbae4c73STrond Myklebust 	if (IS_ERR(task))
1719dbae4c73STrond Myklebust 		return PTR_ERR(task);
1720d2224e7aSJeff Layton 	if (how & FLUSH_SYNC)
1721d2224e7aSJeff Layton 		rpc_wait_for_completion_task(task);
172207737691STrond Myklebust 	rpc_put_task(task);
1723dbae4c73STrond Myklebust 	return 0;
17241da177e4SLinus Torvalds }
1725e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_initiate_commit);
17261da177e4SLinus Torvalds 
nfs_get_lwb(struct list_head * head)1727378520b8SPeng Tao static loff_t nfs_get_lwb(struct list_head *head)
1728378520b8SPeng Tao {
1729378520b8SPeng Tao 	loff_t lwb = 0;
1730378520b8SPeng Tao 	struct nfs_page *req;
1731378520b8SPeng Tao 
1732378520b8SPeng Tao 	list_for_each_entry(req, head, wb_list)
1733378520b8SPeng Tao 		if (lwb < (req_offset(req) + req->wb_bytes))
1734378520b8SPeng Tao 			lwb = req_offset(req) + req->wb_bytes;
1735378520b8SPeng Tao 
1736378520b8SPeng Tao 	return lwb;
1737378520b8SPeng Tao }
1738378520b8SPeng Tao 
17391da177e4SLinus Torvalds /*
17409ace33cdSFred Isaman  * Set up the argument/result storage required for the RPC call.
17419ace33cdSFred Isaman  */
nfs_init_commit(struct nfs_commit_data * data,struct list_head * head,struct pnfs_layout_segment * lseg,struct nfs_commit_info * cinfo)17420b7c0153SFred Isaman void nfs_init_commit(struct nfs_commit_data *data,
1743988b6dceSFred Isaman 		     struct list_head *head,
1744f453a54aSFred Isaman 		     struct pnfs_layout_segment *lseg,
1745f453a54aSFred Isaman 		     struct nfs_commit_info *cinfo)
17469ace33cdSFred Isaman {
174719573c93STrond Myklebust 	struct nfs_page *first;
174819573c93STrond Myklebust 	struct nfs_open_context *ctx;
174919573c93STrond Myklebust 	struct inode *inode;
17509ace33cdSFred Isaman 
17519ace33cdSFred Isaman 	/* Set up the RPC argument and reply structs
17529ace33cdSFred Isaman 	 * NB: take care not to mess about with data->commit et al. */
17539ace33cdSFred Isaman 
175419573c93STrond Myklebust 	if (head)
17559ace33cdSFred Isaman 		list_splice_init(head, &data->pages);
17569ace33cdSFred Isaman 
175719573c93STrond Myklebust 	first = nfs_list_entry(data->pages.next);
175819573c93STrond Myklebust 	ctx = nfs_req_openctx(first);
175919573c93STrond Myklebust 	inode = d_inode(ctx->dentry);
176019573c93STrond Myklebust 
17619ace33cdSFred Isaman 	data->inode	  = inode;
17629fcd5960STrond Myklebust 	data->cred	  = ctx->cred;
1763988b6dceSFred Isaman 	data->lseg	  = lseg; /* reference transferred */
1764378520b8SPeng Tao 	/* only set lwb for pnfs commit */
1765378520b8SPeng Tao 	if (lseg)
1766378520b8SPeng Tao 		data->lwb = nfs_get_lwb(&data->pages);
17679ace33cdSFred Isaman 	data->mds_ops     = &nfs_commit_ops;
1768f453a54aSFred Isaman 	data->completion_ops = cinfo->completion_ops;
1769b359f9d0SFred Isaman 	data->dreq	  = cinfo->dreq;
17709ace33cdSFred Isaman 
17719ace33cdSFred Isaman 	data->args.fh     = NFS_FH(data->inode);
17729ace33cdSFred Isaman 	/* Note: we always request a commit of the entire inode */
17739ace33cdSFred Isaman 	data->args.offset = 0;
17749ace33cdSFred Isaman 	data->args.count  = 0;
17759fcd5960STrond Myklebust 	data->context     = get_nfs_open_context(ctx);
17769ace33cdSFred Isaman 	data->res.fattr   = &data->fattr;
17779ace33cdSFred Isaman 	data->res.verf    = &data->verf;
17789ace33cdSFred Isaman 	nfs_fattr_init(&data->fattr);
1779133a48abSTrond Myklebust 	nfs_commit_begin(cinfo->mds);
17809ace33cdSFred Isaman }
1781e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_init_commit);
17829ace33cdSFred Isaman 
nfs_retry_commit(struct list_head * page_list,struct pnfs_layout_segment * lseg,struct nfs_commit_info * cinfo,u32 ds_commit_idx)1783e0c2b380SFred Isaman void nfs_retry_commit(struct list_head *page_list,
1784ea2cf228SFred Isaman 		      struct pnfs_layout_segment *lseg,
1785b57ff130SWeston Andros Adamson 		      struct nfs_commit_info *cinfo,
1786b57ff130SWeston Andros Adamson 		      u32 ds_commit_idx)
178764bfeb49SFred Isaman {
178864bfeb49SFred Isaman 	struct nfs_page *req;
178964bfeb49SFred Isaman 
179064bfeb49SFred Isaman 	while (!list_empty(page_list)) {
179164bfeb49SFred Isaman 		req = nfs_list_entry(page_list->next);
179264bfeb49SFred Isaman 		nfs_list_remove_request(req);
1793b57ff130SWeston Andros Adamson 		nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
17940c493b5cSTrond Myklebust 		nfs_folio_clear_commit(nfs_page_to_folio(req));
17951d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
179664bfeb49SFred Isaman 	}
179764bfeb49SFred Isaman }
1798e0c2b380SFred Isaman EXPORT_SYMBOL_GPL(nfs_retry_commit);
179964bfeb49SFred Isaman 
nfs_commit_resched_write(struct nfs_commit_info * cinfo,struct nfs_page * req)18000c493b5cSTrond Myklebust static void nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1801b20135d0STrond Myklebust 				     struct nfs_page *req)
1802b20135d0STrond Myklebust {
18030c493b5cSTrond Myklebust 	struct folio *folio = nfs_page_to_folio(req);
18040c493b5cSTrond Myklebust 
18050c493b5cSTrond Myklebust 	filemap_dirty_folio(folio_mapping(folio), folio);
1806b20135d0STrond Myklebust }
1807b20135d0STrond Myklebust 
18089ace33cdSFred Isaman /*
18091da177e4SLinus Torvalds  * Commit dirty pages
18101da177e4SLinus Torvalds  */
18111da177e4SLinus Torvalds static int
nfs_commit_list(struct inode * inode,struct list_head * head,int how,struct nfs_commit_info * cinfo)1812ea2cf228SFred Isaman nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1813ea2cf228SFred Isaman 		struct nfs_commit_info *cinfo)
18141da177e4SLinus Torvalds {
18150b7c0153SFred Isaman 	struct nfs_commit_data	*data;
181685e39feeSOlga Kornievskaia 	unsigned short task_flags = 0;
18171da177e4SLinus Torvalds 
1818ade8febdSWeston Andros Adamson 	/* another commit raced with us */
1819ade8febdSWeston Andros Adamson 	if (list_empty(head))
1820ade8febdSWeston Andros Adamson 		return 0;
1821ade8febdSWeston Andros Adamson 
1822515dcdcdSTrond Myklebust 	data = nfs_commitdata_alloc();
1823515dcdcdSTrond Myklebust 	if (!data) {
1824515dcdcdSTrond Myklebust 		nfs_retry_commit(head, NULL, cinfo, -1);
1825515dcdcdSTrond Myklebust 		return -ENOMEM;
1826515dcdcdSTrond Myklebust 	}
18271da177e4SLinus Torvalds 
18281da177e4SLinus Torvalds 	/* Set up the argument struct */
1829f453a54aSFred Isaman 	nfs_init_commit(data, head, NULL, cinfo);
183085e39feeSOlga Kornievskaia 	if (NFS_SERVER(inode)->nfs_client->cl_minorversion)
183185e39feeSOlga Kornievskaia 		task_flags = RPC_TASK_MOVEABLE;
1832c36aae9aSPeng Tao 	return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
183385e39feeSOlga Kornievskaia 				   data->mds_ops, how,
183485e39feeSOlga Kornievskaia 				   RPC_TASK_CRED_NOREF | task_flags);
18351da177e4SLinus Torvalds }
18361da177e4SLinus Torvalds 
18371da177e4SLinus Torvalds /*
18381da177e4SLinus Torvalds  * COMMIT call returned
18391da177e4SLinus Torvalds  */
nfs_commit_done(struct rpc_task * task,void * calldata)1840788e7a89STrond Myklebust static void nfs_commit_done(struct rpc_task *task, void *calldata)
18411da177e4SLinus Torvalds {
18420b7c0153SFred Isaman 	struct nfs_commit_data	*data = calldata;
18431da177e4SLinus Torvalds 
1844788e7a89STrond Myklebust 	/* Call the NFS version-specific code */
1845c0d0e96bSTrond Myklebust 	NFS_PROTO(data->inode)->commit_done(task, data);
18467bdd297eSTrond Myklebust 	trace_nfs_commit_done(task, data);
1847c9d8f89dSTrond Myklebust }
1848c9d8f89dSTrond Myklebust 
nfs_commit_release_pages(struct nfs_commit_data * data)1849f453a54aSFred Isaman static void nfs_commit_release_pages(struct nfs_commit_data *data)
1850c9d8f89dSTrond Myklebust {
1851221203ceSTrond Myklebust 	const struct nfs_writeverf *verf = data->res.verf;
1852c9d8f89dSTrond Myklebust 	struct nfs_page	*req;
1853c9d8f89dSTrond Myklebust 	int status = data->task.tk_status;
1854f453a54aSFred Isaman 	struct nfs_commit_info cinfo;
1855353db796SNeilBrown 	struct nfs_server *nfss;
18560c493b5cSTrond Myklebust 	struct folio *folio;
1857788e7a89STrond Myklebust 
18581da177e4SLinus Torvalds 	while (!list_empty(&data->pages)) {
18591da177e4SLinus Torvalds 		req = nfs_list_entry(data->pages.next);
18601da177e4SLinus Torvalds 		nfs_list_remove_request(req);
18610c493b5cSTrond Myklebust 		folio = nfs_page_to_folio(req);
18620c493b5cSTrond Myklebust 		nfs_folio_clear_commit(folio);
18631da177e4SLinus Torvalds 
18641e8968c5SNiels de Vos 		dprintk("NFS:       commit (%s/%llu %d@%lld)",
18659fcd5960STrond Myklebust 			nfs_req_openctx(req)->dentry->d_sb->s_id,
18669fcd5960STrond Myklebust 			(unsigned long long)NFS_FILEID(d_inode(nfs_req_openctx(req)->dentry)),
18671da177e4SLinus Torvalds 			req->wb_bytes,
18681da177e4SLinus Torvalds 			(long long)req_offset(req));
1869c9d8f89dSTrond Myklebust 		if (status < 0) {
18700c493b5cSTrond Myklebust 			if (folio) {
1871af887e43STrond Myklebust 				trace_nfs_commit_error(data->inode, req,
1872af887e43STrond Myklebust 						       status);
18730c493b5cSTrond Myklebust 				nfs_mapping_set_error(folio, status);
18741da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
18756fbda89bSTrond Myklebust 			}
1876ddeaa637SJoe Perches 			dprintk_cont(", error = %d\n", status);
18771da177e4SLinus Torvalds 			goto next;
18781da177e4SLinus Torvalds 		}
18791da177e4SLinus Torvalds 
18801da177e4SLinus Torvalds 		/* Okay, COMMIT succeeded, apparently. Check the verifier
18811da177e4SLinus Torvalds 		 * returned by the server against all stored verfs. */
18821f28476dSTrond Myklebust 		if (nfs_write_match_verf(verf, req)) {
18831da177e4SLinus Torvalds 			/* We have a match */
18840c493b5cSTrond Myklebust 			if (folio)
18851da177e4SLinus Torvalds 				nfs_inode_remove_request(req);
1886ddeaa637SJoe Perches 			dprintk_cont(" OK\n");
18871da177e4SLinus Torvalds 			goto next;
18881da177e4SLinus Torvalds 		}
18891da177e4SLinus Torvalds 		/* We have a mismatch. Write the page again */
1890ddeaa637SJoe Perches 		dprintk_cont(" mismatch\n");
18916d884e8fSFred 		nfs_mark_request_dirty(req);
189267f4b5dcSTrond Myklebust 		atomic_long_inc(&NFS_I(data->inode)->redirtied_pages);
18931da177e4SLinus Torvalds 	next:
18941d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
18957f1bda44STrond Myklebust 		/* Latency breaker */
18967f1bda44STrond Myklebust 		cond_resched();
18971da177e4SLinus Torvalds 	}
1898353db796SNeilBrown 	nfss = NFS_SERVER(data->inode);
1899353db796SNeilBrown 	if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
19006df25e58SNeilBrown 		nfss->write_congested = 0;
1901353db796SNeilBrown 
1902f453a54aSFred Isaman 	nfs_init_cinfo(&cinfo, data->inode, data->dreq);
1903af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
19045917ce84SFred Isaman }
19055917ce84SFred Isaman 
nfs_commit_release(void * calldata)19065917ce84SFred Isaman static void nfs_commit_release(void *calldata)
19075917ce84SFred Isaman {
19080b7c0153SFred Isaman 	struct nfs_commit_data *data = calldata;
19095917ce84SFred Isaman 
1910f453a54aSFred Isaman 	data->completion_ops->completion(data);
1911c9d8f89dSTrond Myklebust 	nfs_commitdata_release(calldata);
19121da177e4SLinus Torvalds }
1913788e7a89STrond Myklebust 
1914788e7a89STrond Myklebust static const struct rpc_call_ops nfs_commit_ops = {
19150b7c0153SFred Isaman 	.rpc_call_prepare = nfs_commit_prepare,
1916788e7a89STrond Myklebust 	.rpc_call_done = nfs_commit_done,
1917788e7a89STrond Myklebust 	.rpc_release = nfs_commit_release,
1918788e7a89STrond Myklebust };
19191da177e4SLinus Torvalds 
1920f453a54aSFred Isaman static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1921f453a54aSFred Isaman 	.completion = nfs_commit_release_pages,
1922b20135d0STrond Myklebust 	.resched_write = nfs_commit_resched_write,
1923f453a54aSFred Isaman };
1924f453a54aSFred Isaman 
nfs_generic_commit_list(struct inode * inode,struct list_head * head,int how,struct nfs_commit_info * cinfo)19251763da12SFred Isaman int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1926ea2cf228SFred Isaman 			    int how, struct nfs_commit_info *cinfo)
192784c53ab5SFred Isaman {
192884c53ab5SFred Isaman 	int status;
192984c53ab5SFred Isaman 
1930ea2cf228SFred Isaman 	status = pnfs_commit_list(inode, head, how, cinfo);
193184c53ab5SFred Isaman 	if (status == PNFS_NOT_ATTEMPTED)
1932ea2cf228SFred Isaman 		status = nfs_commit_list(inode, head, how, cinfo);
193384c53ab5SFred Isaman 	return status;
193484c53ab5SFred Isaman }
193584c53ab5SFred Isaman 
__nfs_commit_inode(struct inode * inode,int how,struct writeback_control * wbc)1936c4f24df9STrond Myklebust static int __nfs_commit_inode(struct inode *inode, int how,
1937c4f24df9STrond Myklebust 		struct writeback_control *wbc)
19381da177e4SLinus Torvalds {
19391da177e4SLinus Torvalds 	LIST_HEAD(head);
1940ea2cf228SFred Isaman 	struct nfs_commit_info cinfo;
194171d0a611STrond Myklebust 	int may_wait = how & FLUSH_SYNC;
1942c4f24df9STrond Myklebust 	int ret, nscan;
19431da177e4SLinus Torvalds 
194464a93dbfSTrond Myklebust 	how &= ~FLUSH_SYNC;
1945ea2cf228SFred Isaman 	nfs_init_cinfo_from_inode(&cinfo, inode);
1946af7cf057STrond Myklebust 	nfs_commit_begin(cinfo.mds);
1947c4f24df9STrond Myklebust 	for (;;) {
1948c4f24df9STrond Myklebust 		ret = nscan = nfs_scan_commit(inode, &head, &cinfo);
1949c4f24df9STrond Myklebust 		if (ret <= 0)
1950c4f24df9STrond Myklebust 			break;
1951c4f24df9STrond Myklebust 		ret = nfs_generic_commit_list(inode, &head, how, &cinfo);
1952c4f24df9STrond Myklebust 		if (ret < 0)
1953c4f24df9STrond Myklebust 			break;
1954c4f24df9STrond Myklebust 		ret = 0;
1955c4f24df9STrond Myklebust 		if (wbc && wbc->sync_mode == WB_SYNC_NONE) {
1956c4f24df9STrond Myklebust 			if (nscan < wbc->nr_to_write)
1957c4f24df9STrond Myklebust 				wbc->nr_to_write -= nscan;
1958c4f24df9STrond Myklebust 			else
1959c4f24df9STrond Myklebust 				wbc->nr_to_write = 0;
1960c4f24df9STrond Myklebust 		}
1961c4f24df9STrond Myklebust 		if (nscan < INT_MAX)
1962c4f24df9STrond Myklebust 			break;
1963c4f24df9STrond Myklebust 		cond_resched();
1964c4f24df9STrond Myklebust 	}
1965af7cf057STrond Myklebust 	nfs_commit_end(cinfo.mds);
1966c4f24df9STrond Myklebust 	if (ret || !may_wait)
1967c4f24df9STrond Myklebust 		return ret;
1968c4f24df9STrond Myklebust 	return wait_on_commit(cinfo.mds);
1969c4f24df9STrond Myklebust }
1970c4f24df9STrond Myklebust 
nfs_commit_inode(struct inode * inode,int how)1971c4f24df9STrond Myklebust int nfs_commit_inode(struct inode *inode, int how)
1972c4f24df9STrond Myklebust {
1973c4f24df9STrond Myklebust 	return __nfs_commit_inode(inode, how, NULL);
19741da177e4SLinus Torvalds }
1975b20135d0STrond Myklebust EXPORT_SYMBOL_GPL(nfs_commit_inode);
19768fc795f7STrond Myklebust 
nfs_write_inode(struct inode * inode,struct writeback_control * wbc)1977ae09c31fSAnna Schumaker int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
19788fc795f7STrond Myklebust {
1979420e3646STrond Myklebust 	struct nfs_inode *nfsi = NFS_I(inode);
1980420e3646STrond Myklebust 	int flags = FLUSH_SYNC;
1981420e3646STrond Myklebust 	int ret = 0;
19828fc795f7STrond Myklebust 
1983c4f24df9STrond Myklebust 	if (wbc->sync_mode == WB_SYNC_NONE) {
19843236c3e1SJeff Layton 		/* no commits means nothing needs to be done */
19855cb953d4STrond Myklebust 		if (!atomic_long_read(&nfsi->commit_info.ncommit))
1986c4f24df9STrond Myklebust 			goto check_requests_outstanding;
19873236c3e1SJeff Layton 
1988a00dd6c0SJeff Layton 		/* Don't commit yet if this is a non-blocking flush and there
1989a00dd6c0SJeff Layton 		 * are a lot of outstanding writes for this mapping.
1990420e3646STrond Myklebust 		 */
19911a4edf0fSTrond Myklebust 		if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1992420e3646STrond Myklebust 			goto out_mark_dirty;
1993420e3646STrond Myklebust 
1994a00dd6c0SJeff Layton 		/* don't wait for the COMMIT response */
1995420e3646STrond Myklebust 		flags = 0;
1996a00dd6c0SJeff Layton 	}
1997a00dd6c0SJeff Layton 
1998c4f24df9STrond Myklebust 	ret = __nfs_commit_inode(inode, flags, wbc);
1999c4f24df9STrond Myklebust 	if (!ret) {
2000c4f24df9STrond Myklebust 		if (flags & FLUSH_SYNC)
20018fc795f7STrond Myklebust 			return 0;
2002c4f24df9STrond Myklebust 	} else if (atomic_long_read(&nfsi->commit_info.ncommit))
2003c4f24df9STrond Myklebust 		goto out_mark_dirty;
2004c4f24df9STrond Myklebust 
2005c4f24df9STrond Myklebust check_requests_outstanding:
2006c4f24df9STrond Myklebust 	if (!atomic_read(&nfsi->commit_info.rpcs_out))
2007c4f24df9STrond Myklebust 		return ret;
2008420e3646STrond Myklebust out_mark_dirty:
20098fc795f7STrond Myklebust 	__mark_inode_dirty(inode, I_DIRTY_DATASYNC);
20108fc795f7STrond Myklebust 	return ret;
20118fc795f7STrond Myklebust }
201289d77c8fSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_write_inode);
2013863a3c6cSAndy Adamson 
2014acdc53b2STrond Myklebust /*
2015837bb1d7STrond Myklebust  * Wrapper for filemap_write_and_wait_range()
2016837bb1d7STrond Myklebust  *
2017837bb1d7STrond Myklebust  * Needed for pNFS in order to ensure data becomes visible to the
2018837bb1d7STrond Myklebust  * client.
2019837bb1d7STrond Myklebust  */
nfs_filemap_write_and_wait_range(struct address_space * mapping,loff_t lstart,loff_t lend)2020837bb1d7STrond Myklebust int nfs_filemap_write_and_wait_range(struct address_space *mapping,
2021837bb1d7STrond Myklebust 		loff_t lstart, loff_t lend)
2022837bb1d7STrond Myklebust {
2023837bb1d7STrond Myklebust 	int ret;
2024837bb1d7STrond Myklebust 
2025837bb1d7STrond Myklebust 	ret = filemap_write_and_wait_range(mapping, lstart, lend);
2026837bb1d7STrond Myklebust 	if (ret == 0)
2027837bb1d7STrond Myklebust 		ret = pnfs_sync_inode(mapping->host, true);
2028837bb1d7STrond Myklebust 	return ret;
2029837bb1d7STrond Myklebust }
2030837bb1d7STrond Myklebust EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
2031837bb1d7STrond Myklebust 
2032837bb1d7STrond Myklebust /*
2033acdc53b2STrond Myklebust  * flush the inode to disk.
2034acdc53b2STrond Myklebust  */
nfs_wb_all(struct inode * inode)2035acdc53b2STrond Myklebust int nfs_wb_all(struct inode *inode)
203634901f70STrond Myklebust {
2037f4ce1299STrond Myklebust 	int ret;
203834901f70STrond Myklebust 
2039f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_enter(inode);
2040f4ce1299STrond Myklebust 
20415bb89b47STrond Myklebust 	ret = filemap_write_and_wait(inode->i_mapping);
20426b196875SChuck Lever 	if (ret)
20436b196875SChuck Lever 		goto out;
20445bb89b47STrond Myklebust 	ret = nfs_commit_inode(inode, FLUSH_SYNC);
20456b196875SChuck Lever 	if (ret < 0)
20466b196875SChuck Lever 		goto out;
20475bb89b47STrond Myklebust 	pnfs_sync_inode(inode, true);
20486b196875SChuck Lever 	ret = 0;
2049f4ce1299STrond Myklebust 
20506b196875SChuck Lever out:
2051f4ce1299STrond Myklebust 	trace_nfs_writeback_inode_exit(inode, ret);
2052f4ce1299STrond Myklebust 	return ret;
20531c75950bSTrond Myklebust }
2054ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_wb_all);
20551c75950bSTrond Myklebust 
nfs_wb_folio_cancel(struct inode * inode,struct folio * folio)20566d740c76SMatthew Wilcox (Oracle) int nfs_wb_folio_cancel(struct inode *inode, struct folio *folio)
20571b3b4a1aSTrond Myklebust {
20581b3b4a1aSTrond Myklebust 	struct nfs_page *req;
20591b3b4a1aSTrond Myklebust 	int ret = 0;
20601b3b4a1aSTrond Myklebust 
20616d740c76SMatthew Wilcox (Oracle) 	folio_wait_writeback(folio);
20623e217045SWeston Andros Adamson 
20633e217045SWeston Andros Adamson 	/* blocking call to cancel all requests and join to a single (head)
20643e217045SWeston Andros Adamson 	 * request */
20650c493b5cSTrond Myklebust 	req = nfs_lock_and_join_requests(folio);
20663e217045SWeston Andros Adamson 
20673e217045SWeston Andros Adamson 	if (IS_ERR(req)) {
20683e217045SWeston Andros Adamson 		ret = PTR_ERR(req);
20693e217045SWeston Andros Adamson 	} else if (req) {
20706d740c76SMatthew Wilcox (Oracle) 		/* all requests from this folio have been cancelled by
20713e217045SWeston Andros Adamson 		 * nfs_lock_and_join_requests, so just remove the head
20723e217045SWeston Andros Adamson 		 * request from the inode / page_private pointer and
20733e217045SWeston Andros Adamson 		 * release it */
20741b3b4a1aSTrond Myklebust 		nfs_inode_remove_request(req);
20751d1afcbcSTrond Myklebust 		nfs_unlock_and_release_request(req);
20761b3b4a1aSTrond Myklebust 	}
20773e217045SWeston Andros Adamson 
20781b3b4a1aSTrond Myklebust 	return ret;
20791b3b4a1aSTrond Myklebust }
20801b3b4a1aSTrond Myklebust 
20815241060eSTrond Myklebust /**
20825241060eSTrond Myklebust  * nfs_wb_folio - Write back all requests on one page
20835241060eSTrond Myklebust  * @inode: pointer to page
20845241060eSTrond Myklebust  * @folio: pointer to folio
20855241060eSTrond Myklebust  *
20865241060eSTrond Myklebust  * Assumes that the folio has been locked by the caller, and will
20875241060eSTrond Myklebust  * not unlock it.
20881c75950bSTrond Myklebust  */
nfs_wb_folio(struct inode * inode,struct folio * folio)20895241060eSTrond Myklebust int nfs_wb_folio(struct inode *inode, struct folio *folio)
20901c75950bSTrond Myklebust {
20915241060eSTrond Myklebust 	loff_t range_start = folio_file_pos(folio);
20925241060eSTrond Myklebust 	loff_t range_end = range_start + (loff_t)folio_size(folio) - 1;
20937f2f12d9STrond Myklebust 	struct writeback_control wbc = {
20947f2f12d9STrond Myklebust 		.sync_mode = WB_SYNC_ALL,
20957f2f12d9STrond Myklebust 		.nr_to_write = 0,
20967f2f12d9STrond Myklebust 		.range_start = range_start,
20977f2f12d9STrond Myklebust 		.range_end = range_end,
20987f2f12d9STrond Myklebust 	};
20997f2f12d9STrond Myklebust 	int ret;
21007f2f12d9STrond Myklebust 
2101256093feSTrond Myklebust 	trace_nfs_writeback_folio(inode, folio);
2102f4ce1299STrond Myklebust 
21030522f6adSTrond Myklebust 	for (;;) {
21045241060eSTrond Myklebust 		folio_wait_writeback(folio);
21055241060eSTrond Myklebust 		if (folio_clear_dirty_for_io(folio)) {
21060c493b5cSTrond Myklebust 			ret = nfs_writepage_locked(folio, &wbc);
21077f2f12d9STrond Myklebust 			if (ret < 0)
21087f2f12d9STrond Myklebust 				goto out_error;
21090522f6adSTrond Myklebust 			continue;
21107f2f12d9STrond Myklebust 		}
2111f4ce1299STrond Myklebust 		ret = 0;
21125241060eSTrond Myklebust 		if (!folio_test_private(folio))
21130522f6adSTrond Myklebust 			break;
21140522f6adSTrond Myklebust 		ret = nfs_commit_inode(inode, FLUSH_SYNC);
21157f2f12d9STrond Myklebust 		if (ret < 0)
21167f2f12d9STrond Myklebust 			goto out_error;
21177f2f12d9STrond Myklebust 	}
21187f2f12d9STrond Myklebust out_error:
2119256093feSTrond Myklebust 	trace_nfs_writeback_folio_done(inode, folio, ret);
21207f2f12d9STrond Myklebust 	return ret;
21211c75950bSTrond Myklebust }
21221c75950bSTrond Myklebust 
2123074cc1deSTrond Myklebust #ifdef CONFIG_MIGRATION
nfs_migrate_folio(struct address_space * mapping,struct folio * dst,struct folio * src,enum migrate_mode mode)21244ae84a80SMatthew Wilcox (Oracle) int nfs_migrate_folio(struct address_space *mapping, struct folio *dst,
21254ae84a80SMatthew Wilcox (Oracle) 		struct folio *src, enum migrate_mode mode)
2126074cc1deSTrond Myklebust {
21272da95652SJeff Layton 	/*
21284ae84a80SMatthew Wilcox (Oracle) 	 * If the private flag is set, the folio is currently associated with
21292da95652SJeff Layton 	 * an in-progress read or write request. Don't try to migrate it.
21302da95652SJeff Layton 	 *
21312da95652SJeff Layton 	 * FIXME: we could do this in principle, but we'll need a way to ensure
21322da95652SJeff Layton 	 *        that we can safely release the inode reference while holding
21334ae84a80SMatthew Wilcox (Oracle) 	 *        the folio lock.
21342da95652SJeff Layton 	 */
21354ae84a80SMatthew Wilcox (Oracle) 	if (folio_test_private(src))
21362da95652SJeff Layton 		return -EBUSY;
2137074cc1deSTrond Myklebust 
21384ae84a80SMatthew Wilcox (Oracle) 	if (folio_test_fscache(src)) {
213916f2f4e6SDavid Howells 		if (mode == MIGRATE_ASYNC)
21408c209ce7SDavid Howells 			return -EBUSY;
21414ae84a80SMatthew Wilcox (Oracle) 		folio_wait_fscache(src);
214216f2f4e6SDavid Howells 	}
2143074cc1deSTrond Myklebust 
214454184650SMatthew Wilcox (Oracle) 	return migrate_folio(mapping, dst, src, mode);
2145074cc1deSTrond Myklebust }
2146074cc1deSTrond Myklebust #endif
2147074cc1deSTrond Myklebust 
nfs_init_writepagecache(void)2148f7b422b1SDavid Howells int __init nfs_init_writepagecache(void)
21491da177e4SLinus Torvalds {
21501da177e4SLinus Torvalds 	nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
21511e7f3a48SWeston Andros Adamson 					     sizeof(struct nfs_pgio_header),
21521da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
215320c2df83SPaul Mundt 					     NULL);
21541da177e4SLinus Torvalds 	if (nfs_wdata_cachep == NULL)
21551da177e4SLinus Torvalds 		return -ENOMEM;
21561da177e4SLinus Torvalds 
215793d2341cSMatthew Dobson 	nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
21581da177e4SLinus Torvalds 						     nfs_wdata_cachep);
21591da177e4SLinus Torvalds 	if (nfs_wdata_mempool == NULL)
21603dd4765fSJeff Layton 		goto out_destroy_write_cache;
21611da177e4SLinus Torvalds 
21620b7c0153SFred Isaman 	nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
21630b7c0153SFred Isaman 					     sizeof(struct nfs_commit_data),
21640b7c0153SFred Isaman 					     0, SLAB_HWCACHE_ALIGN,
21650b7c0153SFred Isaman 					     NULL);
21660b7c0153SFred Isaman 	if (nfs_cdata_cachep == NULL)
21673dd4765fSJeff Layton 		goto out_destroy_write_mempool;
21680b7c0153SFred Isaman 
216993d2341cSMatthew Dobson 	nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
21704c100210SYanchuan Nian 						      nfs_cdata_cachep);
21711da177e4SLinus Torvalds 	if (nfs_commit_mempool == NULL)
21723dd4765fSJeff Layton 		goto out_destroy_commit_cache;
21731da177e4SLinus Torvalds 
217489a09141SPeter Zijlstra 	/*
217589a09141SPeter Zijlstra 	 * NFS congestion size, scale with available memory.
217689a09141SPeter Zijlstra 	 *
217789a09141SPeter Zijlstra 	 *  64MB:    8192k
217889a09141SPeter Zijlstra 	 * 128MB:   11585k
217989a09141SPeter Zijlstra 	 * 256MB:   16384k
218089a09141SPeter Zijlstra 	 * 512MB:   23170k
218189a09141SPeter Zijlstra 	 *   1GB:   32768k
218289a09141SPeter Zijlstra 	 *   2GB:   46340k
218389a09141SPeter Zijlstra 	 *   4GB:   65536k
218489a09141SPeter Zijlstra 	 *   8GB:   92681k
218589a09141SPeter Zijlstra 	 *  16GB:  131072k
218689a09141SPeter Zijlstra 	 *
218789a09141SPeter Zijlstra 	 * This allows larger machines to have larger/more transfers.
218889a09141SPeter Zijlstra 	 * Limit the default to 256M
218989a09141SPeter Zijlstra 	 */
2190ca79b0c2SArun KS 	nfs_congestion_kb = (16*int_sqrt(totalram_pages())) << (PAGE_SHIFT-10);
219189a09141SPeter Zijlstra 	if (nfs_congestion_kb > 256*1024)
219289a09141SPeter Zijlstra 		nfs_congestion_kb = 256*1024;
219389a09141SPeter Zijlstra 
21941da177e4SLinus Torvalds 	return 0;
21953dd4765fSJeff Layton 
21963dd4765fSJeff Layton out_destroy_commit_cache:
21973dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
21983dd4765fSJeff Layton out_destroy_write_mempool:
21993dd4765fSJeff Layton 	mempool_destroy(nfs_wdata_mempool);
22003dd4765fSJeff Layton out_destroy_write_cache:
22013dd4765fSJeff Layton 	kmem_cache_destroy(nfs_wdata_cachep);
22023dd4765fSJeff Layton 	return -ENOMEM;
22031da177e4SLinus Torvalds }
22041da177e4SLinus Torvalds 
nfs_destroy_writepagecache(void)2205266bee88SDavid Brownell void nfs_destroy_writepagecache(void)
22061da177e4SLinus Torvalds {
22071da177e4SLinus Torvalds 	mempool_destroy(nfs_commit_mempool);
22083dd4765fSJeff Layton 	kmem_cache_destroy(nfs_cdata_cachep);
22091da177e4SLinus Torvalds 	mempool_destroy(nfs_wdata_mempool);
22101a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_wdata_cachep);
22111da177e4SLinus Torvalds }
22121da177e4SLinus Torvalds 
22134a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_write_ops = {
22144a0de55cSAnna Schumaker 	.rw_alloc_header	= nfs_writehdr_alloc,
22154a0de55cSAnna Schumaker 	.rw_free_header		= nfs_writehdr_free,
22160eecb214SAnna Schumaker 	.rw_done		= nfs_writeback_done,
22170eecb214SAnna Schumaker 	.rw_result		= nfs_writeback_result,
22181ed26f33SAnna Schumaker 	.rw_initiate		= nfs_initiate_write,
22194a0de55cSAnna Schumaker };
2220