xref: /openbmc/linux/fs/nfs/read.c (revision fbe77c30e9abcb3429380dec622439991a718e31)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * linux/fs/nfs/read.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Block I/O for NFS
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * Partial copy of Linus' read cache modifications to fs/nfs/file.c
71da177e4SLinus Torvalds  * modified for async RPC by okir@monad.swb.de
81da177e4SLinus Torvalds  */
91da177e4SLinus Torvalds 
101da177e4SLinus Torvalds #include <linux/time.h>
111da177e4SLinus Torvalds #include <linux/kernel.h>
121da177e4SLinus Torvalds #include <linux/errno.h>
131da177e4SLinus Torvalds #include <linux/fcntl.h>
141da177e4SLinus Torvalds #include <linux/stat.h>
151da177e4SLinus Torvalds #include <linux/mm.h>
161da177e4SLinus Torvalds #include <linux/slab.h>
171da177e4SLinus Torvalds #include <linux/pagemap.h>
181da177e4SLinus Torvalds #include <linux/sunrpc/clnt.h>
191da177e4SLinus Torvalds #include <linux/nfs_fs.h>
201da177e4SLinus Torvalds #include <linux/nfs_page.h>
2164419a9bSAndy Adamson #include <linux/module.h>
221da177e4SLinus Torvalds 
23f11c88afSAndy Adamson #include "nfs4_fs.h"
2449a70f27STrond Myklebust #include "internal.h"
2591d5b470SChuck Lever #include "iostat.h"
269a9fc1c0SDavid Howells #include "fscache.h"
27fab5fc25SChristoph Hellwig #include "pnfs.h"
2891d5b470SChuck Lever 
291da177e4SLinus Torvalds #define NFSDBG_FACILITY		NFSDBG_PAGECACHE
301da177e4SLinus Torvalds 
31061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops;
324a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_read_ops;
331da177e4SLinus Torvalds 
34e18b890bSChristoph Lameter static struct kmem_cache *nfs_rdata_cachep;
351da177e4SLinus Torvalds 
361e7f3a48SWeston Andros Adamson static struct nfs_pgio_header *nfs_readhdr_alloc(void)
373feb2d49STrond Myklebust {
38*fbe77c30SBenjamin Coddington 	struct nfs_pgio_header *p = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
39*fbe77c30SBenjamin Coddington 
40*fbe77c30SBenjamin Coddington 	if (p)
41*fbe77c30SBenjamin Coddington 		p->rw_mode = FMODE_READ;
42*fbe77c30SBenjamin Coddington 	return p;
434db6e0b7SFred Isaman }
444db6e0b7SFred Isaman 
451e7f3a48SWeston Andros Adamson static void nfs_readhdr_free(struct nfs_pgio_header *rhdr)
463feb2d49STrond Myklebust {
47cd841605SFred Isaman 	kmem_cache_free(nfs_rdata_cachep, rhdr);
483feb2d49STrond Myklebust }
493feb2d49STrond Myklebust 
501da177e4SLinus Torvalds static
511da177e4SLinus Torvalds int nfs_return_empty_page(struct page *page)
521da177e4SLinus Torvalds {
5309cbfeafSKirill A. Shutemov 	zero_user(page, 0, PAGE_SIZE);
541da177e4SLinus Torvalds 	SetPageUptodate(page);
551da177e4SLinus Torvalds 	unlock_page(page);
561da177e4SLinus Torvalds 	return 0;
571da177e4SLinus Torvalds }
581da177e4SLinus Torvalds 
591abb5088SBryan Schumaker void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
60fab5fc25SChristoph Hellwig 			      struct inode *inode, bool force_mds,
61061ae2edSFred Isaman 			      const struct nfs_pgio_completion_ops *compl_ops)
621751c363STrond Myklebust {
63fab5fc25SChristoph Hellwig 	struct nfs_server *server = NFS_SERVER(inode);
6441d8d5b7SAnna Schumaker 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
65fab5fc25SChristoph Hellwig 
66fab5fc25SChristoph Hellwig #ifdef CONFIG_NFS_V4_1
67fab5fc25SChristoph Hellwig 	if (server->pnfs_curr_ld && !force_mds)
68fab5fc25SChristoph Hellwig 		pg_ops = server->pnfs_curr_ld->pg_read_ops;
69fab5fc25SChristoph Hellwig #endif
704a0de55cSAnna Schumaker 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
71*fbe77c30SBenjamin Coddington 			server->rsize, 0, GFP_KERNEL);
721751c363STrond Myklebust }
73ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
741751c363STrond Myklebust 
75493292ddSTrond Myklebust void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
76493292ddSTrond Myklebust {
77a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *mirror;
78a7d42ddbSWeston Andros Adamson 
796f29b9bbSKinglong Mee 	if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
806f29b9bbSKinglong Mee 		pgio->pg_ops->pg_cleanup(pgio);
816f29b9bbSKinglong Mee 
8241d8d5b7SAnna Schumaker 	pgio->pg_ops = &nfs_pgio_rw_ops;
83a7d42ddbSWeston Andros Adamson 
84a7d42ddbSWeston Andros Adamson 	/* read path should never have more than one mirror */
85a7d42ddbSWeston Andros Adamson 	WARN_ON_ONCE(pgio->pg_mirror_count != 1);
86a7d42ddbSWeston Andros Adamson 
87a7d42ddbSWeston Andros Adamson 	mirror = &pgio->pg_mirrors[0];
88a7d42ddbSWeston Andros Adamson 	mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
89493292ddSTrond Myklebust }
901f945357STrond Myklebust EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
91493292ddSTrond Myklebust 
920bcbf039SPeng Tao static void nfs_readpage_release(struct nfs_page *req)
930bcbf039SPeng Tao {
940bcbf039SPeng Tao 	struct inode *inode = d_inode(req->wb_context->dentry);
950bcbf039SPeng Tao 
960bcbf039SPeng Tao 	dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
970bcbf039SPeng Tao 		(unsigned long long)NFS_FILEID(inode), req->wb_bytes,
980bcbf039SPeng Tao 		(long long)req_offset(req));
990bcbf039SPeng Tao 
1000bcbf039SPeng Tao 	if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
1010bcbf039SPeng Tao 		if (PageUptodate(req->wb_page))
1020bcbf039SPeng Tao 			nfs_readpage_to_fscache(inode, req->wb_page, 0);
1030bcbf039SPeng Tao 
1040bcbf039SPeng Tao 		unlock_page(req->wb_page);
1050bcbf039SPeng Tao 	}
1060bcbf039SPeng Tao 	nfs_release_request(req);
1070bcbf039SPeng Tao }
1080bcbf039SPeng Tao 
109f42b293dSDavid Howells int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
1101da177e4SLinus Torvalds 		       struct page *page)
1111da177e4SLinus Torvalds {
1121da177e4SLinus Torvalds 	struct nfs_page	*new;
1131da177e4SLinus Torvalds 	unsigned int len;
114c76069bdSFred Isaman 	struct nfs_pageio_descriptor pgio;
115a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *pgm;
1161da177e4SLinus Torvalds 
11749a70f27STrond Myklebust 	len = nfs_page_length(page);
1181da177e4SLinus Torvalds 	if (len == 0)
1191da177e4SLinus Torvalds 		return nfs_return_empty_page(page);
1202bfc6e56SWeston Andros Adamson 	new = nfs_create_request(ctx, page, NULL, 0, len);
1211da177e4SLinus Torvalds 	if (IS_ERR(new)) {
1221da177e4SLinus Torvalds 		unlock_page(page);
1231da177e4SLinus Torvalds 		return PTR_ERR(new);
1241da177e4SLinus Torvalds 	}
12509cbfeafSKirill A. Shutemov 	if (len < PAGE_SIZE)
12609cbfeafSKirill A. Shutemov 		zero_user_segment(page, len, PAGE_SIZE);
1271da177e4SLinus Torvalds 
128fab5fc25SChristoph Hellwig 	nfs_pageio_init_read(&pgio, inode, false,
129fab5fc25SChristoph Hellwig 			     &nfs_async_read_completion_ops);
1300bcbf039SPeng Tao 	if (!nfs_pageio_add_request(&pgio, new)) {
1310bcbf039SPeng Tao 		nfs_list_remove_request(new);
1320bcbf039SPeng Tao 		nfs_readpage_release(new);
1330bcbf039SPeng Tao 	}
1341751c363STrond Myklebust 	nfs_pageio_complete(&pgio);
135a7d42ddbSWeston Andros Adamson 
136a7d42ddbSWeston Andros Adamson 	/* It doesn't make sense to do mirrored reads! */
137a7d42ddbSWeston Andros Adamson 	WARN_ON_ONCE(pgio.pg_mirror_count != 1);
138a7d42ddbSWeston Andros Adamson 
139a7d42ddbSWeston Andros Adamson 	pgm = &pgio.pg_mirrors[0];
140a7d42ddbSWeston Andros Adamson 	NFS_I(inode)->read_io += pgm->pg_bytes_written;
141a7d42ddbSWeston Andros Adamson 
142d600ad1fSPeng Tao 	return pgio.pg_error < 0 ? pgio.pg_error : 0;
1431da177e4SLinus Torvalds }
1441da177e4SLinus Torvalds 
14567d0338eSWeston Andros Adamson static void nfs_page_group_set_uptodate(struct nfs_page *req)
14667d0338eSWeston Andros Adamson {
14767d0338eSWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
14867d0338eSWeston Andros Adamson 		SetPageUptodate(req->wb_page);
14967d0338eSWeston Andros Adamson }
15067d0338eSWeston Andros Adamson 
151061ae2edSFred Isaman static void nfs_read_completion(struct nfs_pgio_header *hdr)
1524db6e0b7SFred Isaman {
1534db6e0b7SFred Isaman 	unsigned long bytes = 0;
1544db6e0b7SFred Isaman 
1554db6e0b7SFred Isaman 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
1564db6e0b7SFred Isaman 		goto out;
1574db6e0b7SFred Isaman 	while (!list_empty(&hdr->pages)) {
1584db6e0b7SFred Isaman 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
1594db6e0b7SFred Isaman 		struct page *page = req->wb_page;
16068072992SWeston Andros Adamson 		unsigned long start = req->wb_pgbase;
16168072992SWeston Andros Adamson 		unsigned long end = req->wb_pgbase + req->wb_bytes;
1624db6e0b7SFred Isaman 
1634db6e0b7SFred Isaman 		if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
16468072992SWeston Andros Adamson 			/* note: regions of the page not covered by a
16568072992SWeston Andros Adamson 			 * request are zeroed in nfs_readpage_async /
16668072992SWeston Andros Adamson 			 * readpage_async_filler */
16768072992SWeston Andros Adamson 			if (bytes > hdr->good_bytes) {
16868072992SWeston Andros Adamson 				/* nothing in this request was good, so zero
16968072992SWeston Andros Adamson 				 * the full extent of the request */
17068072992SWeston Andros Adamson 				zero_user_segment(page, start, end);
17168072992SWeston Andros Adamson 
17268072992SWeston Andros Adamson 			} else if (hdr->good_bytes - bytes < req->wb_bytes) {
17368072992SWeston Andros Adamson 				/* part of this request has good bytes, but
17468072992SWeston Andros Adamson 				 * not all. zero the bad bytes */
17568072992SWeston Andros Adamson 				start += hdr->good_bytes - bytes;
17668072992SWeston Andros Adamson 				WARN_ON(start < req->wb_pgbase);
17768072992SWeston Andros Adamson 				zero_user_segment(page, start, end);
17868072992SWeston Andros Adamson 			}
1794db6e0b7SFred Isaman 		}
1804bd8b010STrond Myklebust 		bytes += req->wb_bytes;
1814bd8b010STrond Myklebust 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
1824bd8b010STrond Myklebust 			if (bytes <= hdr->good_bytes)
18367d0338eSWeston Andros Adamson 				nfs_page_group_set_uptodate(req);
1844bd8b010STrond Myklebust 		} else
18567d0338eSWeston Andros Adamson 			nfs_page_group_set_uptodate(req);
1864db6e0b7SFred Isaman 		nfs_list_remove_request(req);
1874db6e0b7SFred Isaman 		nfs_readpage_release(req);
1884db6e0b7SFred Isaman 	}
1894db6e0b7SFred Isaman out:
1904db6e0b7SFred Isaman 	hdr->release(hdr);
1914db6e0b7SFred Isaman }
1924db6e0b7SFred Isaman 
193d45f60c6SWeston Andros Adamson static void nfs_initiate_read(struct nfs_pgio_header *hdr,
194d45f60c6SWeston Andros Adamson 			      struct rpc_message *msg,
195abde71f4STom Haynes 			      const struct nfs_rpc_ops *rpc_ops,
1961ed26f33SAnna Schumaker 			      struct rpc_task_setup *task_setup_data, int how)
19764419a9bSAndy Adamson {
198d45f60c6SWeston Andros Adamson 	struct inode *inode = hdr->inode;
19964419a9bSAndy Adamson 	int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
20064419a9bSAndy Adamson 
2011ed26f33SAnna Schumaker 	task_setup_data->flags |= swap_flags;
202abde71f4STom Haynes 	rpc_ops->read_setup(hdr, msg);
20364419a9bSAndy Adamson }
20464419a9bSAndy Adamson 
205061ae2edSFred Isaman static void
2061da177e4SLinus Torvalds nfs_async_read_error(struct list_head *head)
2071da177e4SLinus Torvalds {
2081da177e4SLinus Torvalds 	struct nfs_page	*req;
2091da177e4SLinus Torvalds 
2101da177e4SLinus Torvalds 	while (!list_empty(head)) {
2111da177e4SLinus Torvalds 		req = nfs_list_entry(head->next);
2121da177e4SLinus Torvalds 		nfs_list_remove_request(req);
2131da177e4SLinus Torvalds 		nfs_readpage_release(req);
2141da177e4SLinus Torvalds 	}
2151da177e4SLinus Torvalds }
2161da177e4SLinus Torvalds 
217061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
218061ae2edSFred Isaman 	.error_cleanup = nfs_async_read_error,
219061ae2edSFred Isaman 	.completion = nfs_read_completion,
220061ae2edSFred Isaman };
221061ae2edSFred Isaman 
2221da177e4SLinus Torvalds /*
2230b671301STrond Myklebust  * This is the callback from RPC telling us whether a reply was
2240b671301STrond Myklebust  * received or some error occurred (timeout or socket shutdown).
2250b671301STrond Myklebust  */
226d45f60c6SWeston Andros Adamson static int nfs_readpage_done(struct rpc_task *task,
227d45f60c6SWeston Andros Adamson 			     struct nfs_pgio_header *hdr,
2280eecb214SAnna Schumaker 			     struct inode *inode)
2290b671301STrond Myklebust {
230d45f60c6SWeston Andros Adamson 	int status = NFS_PROTO(inode)->read_done(task, hdr);
2310b671301STrond Myklebust 	if (status != 0)
2320b671301STrond Myklebust 		return status;
2330b671301STrond Myklebust 
234d45f60c6SWeston Andros Adamson 	nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, hdr->res.count);
2350b671301STrond Myklebust 
2360b671301STrond Myklebust 	if (task->tk_status == -ESTALE) {
237cd841605SFred Isaman 		set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
238cd841605SFred Isaman 		nfs_mark_for_revalidate(inode);
2390b671301STrond Myklebust 	}
2400b671301STrond Myklebust 	return 0;
2410b671301STrond Myklebust }
2420b671301STrond Myklebust 
243d45f60c6SWeston Andros Adamson static void nfs_readpage_retry(struct rpc_task *task,
244d45f60c6SWeston Andros Adamson 			       struct nfs_pgio_header *hdr)
2450b671301STrond Myklebust {
246d45f60c6SWeston Andros Adamson 	struct nfs_pgio_args *argp = &hdr->args;
247d45f60c6SWeston Andros Adamson 	struct nfs_pgio_res  *resp = &hdr->res;
2480b671301STrond Myklebust 
2490b671301STrond Myklebust 	/* This is a short read! */
250d45f60c6SWeston Andros Adamson 	nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
2510b671301STrond Myklebust 	/* Has the server at least made some progress? */
2524db6e0b7SFred Isaman 	if (resp->count == 0) {
253d45f60c6SWeston Andros Adamson 		nfs_set_pgio_error(hdr, -EIO, argp->offset);
254d61e612aSTrond Myklebust 		return;
2554db6e0b7SFred Isaman 	}
256f8417b48SKinglong Mee 
257f8417b48SKinglong Mee 	/* For non rpc-based layout drivers, retry-through-MDS */
258f8417b48SKinglong Mee 	if (!task->tk_ops) {
259f8417b48SKinglong Mee 		hdr->pnfs_error = -EAGAIN;
260f8417b48SKinglong Mee 		return;
261f8417b48SKinglong Mee 	}
262f8417b48SKinglong Mee 
263d45f60c6SWeston Andros Adamson 	/* Yes, so retry the read at the end of the hdr */
264d45f60c6SWeston Andros Adamson 	hdr->mds_offset += resp->count;
2650b671301STrond Myklebust 	argp->offset += resp->count;
2660b671301STrond Myklebust 	argp->pgbase += resp->count;
2670b671301STrond Myklebust 	argp->count -= resp->count;
268d00c5d43STrond Myklebust 	rpc_restart_call_prepare(task);
2690b671301STrond Myklebust }
2700b671301STrond Myklebust 
271d45f60c6SWeston Andros Adamson static void nfs_readpage_result(struct rpc_task *task,
272d45f60c6SWeston Andros Adamson 				struct nfs_pgio_header *hdr)
2731da177e4SLinus Torvalds {
274d45f60c6SWeston Andros Adamson 	if (hdr->res.eof) {
2754db6e0b7SFred Isaman 		loff_t bound;
276fdd1e74cSTrond Myklebust 
277d45f60c6SWeston Andros Adamson 		bound = hdr->args.offset + hdr->res.count;
2784db6e0b7SFred Isaman 		spin_lock(&hdr->lock);
2794db6e0b7SFred Isaman 		if (bound < hdr->io_start + hdr->good_bytes) {
2804db6e0b7SFred Isaman 			set_bit(NFS_IOHDR_EOF, &hdr->flags);
2814db6e0b7SFred Isaman 			clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
2824db6e0b7SFred Isaman 			hdr->good_bytes = bound - hdr->io_start;
2834db6e0b7SFred Isaman 		}
2844db6e0b7SFred Isaman 		spin_unlock(&hdr->lock);
285f8417b48SKinglong Mee 	} else if (hdr->res.count < hdr->args.count)
286d45f60c6SWeston Andros Adamson 		nfs_readpage_retry(task, hdr);
2870b671301STrond Myklebust }
288fdd1e74cSTrond Myklebust 
2891da177e4SLinus Torvalds /*
2901da177e4SLinus Torvalds  * Read a page over NFS.
2911da177e4SLinus Torvalds  * We read the page synchronously in the following case:
2921da177e4SLinus Torvalds  *  -	The error flag is set for this page. This happens only when a
2931da177e4SLinus Torvalds  *	previous async read operation failed.
2941da177e4SLinus Torvalds  */
2951da177e4SLinus Torvalds int nfs_readpage(struct file *file, struct page *page)
2961da177e4SLinus Torvalds {
2971da177e4SLinus Torvalds 	struct nfs_open_context *ctx;
298d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
2991da177e4SLinus Torvalds 	int		error;
3001da177e4SLinus Torvalds 
3011da177e4SLinus Torvalds 	dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
3028cd79788SHuang Ying 		page, PAGE_SIZE, page_index(page));
30391d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
3043708f842SNicolas Iooss 	nfs_add_stats(inode, NFSIOS_READPAGES, 1);
30591d5b470SChuck Lever 
3061da177e4SLinus Torvalds 	/*
3071da177e4SLinus Torvalds 	 * Try to flush any pending writes to the file..
3081da177e4SLinus Torvalds 	 *
3091da177e4SLinus Torvalds 	 * NOTE! Because we own the page lock, there cannot
3101da177e4SLinus Torvalds 	 * be any new pending writes generated at this point
3111da177e4SLinus Torvalds 	 * for this page (other pages can be written to).
3121da177e4SLinus Torvalds 	 */
3131da177e4SLinus Torvalds 	error = nfs_wb_page(inode, page);
3141da177e4SLinus Torvalds 	if (error)
315de05a0ccSTrond Myklebust 		goto out_unlock;
316de05a0ccSTrond Myklebust 	if (PageUptodate(page))
317de05a0ccSTrond Myklebust 		goto out_unlock;
3181da177e4SLinus Torvalds 
3195f004cf2STrond Myklebust 	error = -ESTALE;
3205f004cf2STrond Myklebust 	if (NFS_STALE(inode))
321de05a0ccSTrond Myklebust 		goto out_unlock;
3225f004cf2STrond Myklebust 
3231da177e4SLinus Torvalds 	if (file == NULL) {
324cf1308ffSTrond Myklebust 		error = -EBADF;
325d530838bSTrond Myklebust 		ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
3261da177e4SLinus Torvalds 		if (ctx == NULL)
327de05a0ccSTrond Myklebust 			goto out_unlock;
3281da177e4SLinus Torvalds 	} else
329cd3758e3STrond Myklebust 		ctx = get_nfs_open_context(nfs_file_open_context(file));
3301da177e4SLinus Torvalds 
3319a9fc1c0SDavid Howells 	if (!IS_SYNC(inode)) {
3329a9fc1c0SDavid Howells 		error = nfs_readpage_from_fscache(ctx, inode, page);
3339a9fc1c0SDavid Howells 		if (error == 0)
3349a9fc1c0SDavid Howells 			goto out;
3359a9fc1c0SDavid Howells 	}
3369a9fc1c0SDavid Howells 
3378e0969f0STrond Myklebust 	error = nfs_readpage_async(ctx, inode, page);
3388e0969f0STrond Myklebust 
3399a9fc1c0SDavid Howells out:
3401da177e4SLinus Torvalds 	put_nfs_open_context(ctx);
3411da177e4SLinus Torvalds 	return error;
342de05a0ccSTrond Myklebust out_unlock:
3431da177e4SLinus Torvalds 	unlock_page(page);
3441da177e4SLinus Torvalds 	return error;
3451da177e4SLinus Torvalds }
3461da177e4SLinus Torvalds 
3471da177e4SLinus Torvalds struct nfs_readdesc {
3488b09bee3STrond Myklebust 	struct nfs_pageio_descriptor *pgio;
3491da177e4SLinus Torvalds 	struct nfs_open_context *ctx;
3501da177e4SLinus Torvalds };
3511da177e4SLinus Torvalds 
3521da177e4SLinus Torvalds static int
3531da177e4SLinus Torvalds readpage_async_filler(void *data, struct page *page)
3541da177e4SLinus Torvalds {
3551da177e4SLinus Torvalds 	struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
3561da177e4SLinus Torvalds 	struct nfs_page *new;
3571da177e4SLinus Torvalds 	unsigned int len;
358de05a0ccSTrond Myklebust 	int error;
3591da177e4SLinus Torvalds 
36049a70f27STrond Myklebust 	len = nfs_page_length(page);
3611da177e4SLinus Torvalds 	if (len == 0)
3621da177e4SLinus Torvalds 		return nfs_return_empty_page(page);
363de05a0ccSTrond Myklebust 
3642bfc6e56SWeston Andros Adamson 	new = nfs_create_request(desc->ctx, page, NULL, 0, len);
365de05a0ccSTrond Myklebust 	if (IS_ERR(new))
366de05a0ccSTrond Myklebust 		goto out_error;
367de05a0ccSTrond Myklebust 
36809cbfeafSKirill A. Shutemov 	if (len < PAGE_SIZE)
36909cbfeafSKirill A. Shutemov 		zero_user_segment(page, len, PAGE_SIZE);
370f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(desc->pgio, new)) {
3710bcbf039SPeng Tao 		nfs_list_remove_request(new);
3720bcbf039SPeng Tao 		nfs_readpage_release(new);
373f8512ad0SFred Isaman 		error = desc->pgio->pg_error;
374cbebaf89STrond Myklebust 		goto out;
375f8512ad0SFred Isaman 	}
3761da177e4SLinus Torvalds 	return 0;
377de05a0ccSTrond Myklebust out_error:
378de05a0ccSTrond Myklebust 	error = PTR_ERR(new);
379de05a0ccSTrond Myklebust 	unlock_page(page);
380cbebaf89STrond Myklebust out:
381de05a0ccSTrond Myklebust 	return error;
3821da177e4SLinus Torvalds }
3831da177e4SLinus Torvalds 
3841da177e4SLinus Torvalds int nfs_readpages(struct file *filp, struct address_space *mapping,
3851da177e4SLinus Torvalds 		struct list_head *pages, unsigned nr_pages)
3861da177e4SLinus Torvalds {
3878b09bee3STrond Myklebust 	struct nfs_pageio_descriptor pgio;
388a7d42ddbSWeston Andros Adamson 	struct nfs_pgio_mirror *pgm;
3891da177e4SLinus Torvalds 	struct nfs_readdesc desc = {
3908b09bee3STrond Myklebust 		.pgio = &pgio,
3911da177e4SLinus Torvalds 	};
3921da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
3938b09bee3STrond Myklebust 	unsigned long npages;
3945f004cf2STrond Myklebust 	int ret = -ESTALE;
3951da177e4SLinus Torvalds 
3961e8968c5SNiels de Vos 	dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
3971da177e4SLinus Torvalds 			inode->i_sb->s_id,
3981e8968c5SNiels de Vos 			(unsigned long long)NFS_FILEID(inode),
3991da177e4SLinus Torvalds 			nr_pages);
40091d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
4011da177e4SLinus Torvalds 
4025f004cf2STrond Myklebust 	if (NFS_STALE(inode))
4035f004cf2STrond Myklebust 		goto out;
4045f004cf2STrond Myklebust 
4051da177e4SLinus Torvalds 	if (filp == NULL) {
406d530838bSTrond Myklebust 		desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
4071da177e4SLinus Torvalds 		if (desc.ctx == NULL)
4081da177e4SLinus Torvalds 			return -EBADF;
4091da177e4SLinus Torvalds 	} else
410cd3758e3STrond Myklebust 		desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
4119a9fc1c0SDavid Howells 
4129a9fc1c0SDavid Howells 	/* attempt to read as many of the pages as possible from the cache
4139a9fc1c0SDavid Howells 	 * - this returns -ENOBUFS immediately if the cookie is negative
4149a9fc1c0SDavid Howells 	 */
4159a9fc1c0SDavid Howells 	ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
4169a9fc1c0SDavid Howells 					 pages, &nr_pages);
4179a9fc1c0SDavid Howells 	if (ret == 0)
4189a9fc1c0SDavid Howells 		goto read_complete; /* all pages were read */
4199a9fc1c0SDavid Howells 
420fab5fc25SChristoph Hellwig 	nfs_pageio_init_read(&pgio, inode, false,
421fab5fc25SChristoph Hellwig 			     &nfs_async_read_completion_ops);
4228b09bee3STrond Myklebust 
4231da177e4SLinus Torvalds 	ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
4248b09bee3STrond Myklebust 	nfs_pageio_complete(&pgio);
425a7d42ddbSWeston Andros Adamson 
426a7d42ddbSWeston Andros Adamson 	/* It doesn't make sense to do mirrored reads! */
427a7d42ddbSWeston Andros Adamson 	WARN_ON_ONCE(pgio.pg_mirror_count != 1);
428a7d42ddbSWeston Andros Adamson 
429a7d42ddbSWeston Andros Adamson 	pgm = &pgio.pg_mirrors[0];
430a7d42ddbSWeston Andros Adamson 	NFS_I(inode)->read_io += pgm->pg_bytes_written;
43109cbfeafSKirill A. Shutemov 	npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >>
43209cbfeafSKirill A. Shutemov 		 PAGE_SHIFT;
4338b09bee3STrond Myklebust 	nfs_add_stats(inode, NFSIOS_READPAGES, npages);
4349a9fc1c0SDavid Howells read_complete:
4351da177e4SLinus Torvalds 	put_nfs_open_context(desc.ctx);
4365f004cf2STrond Myklebust out:
4371da177e4SLinus Torvalds 	return ret;
4381da177e4SLinus Torvalds }
4391da177e4SLinus Torvalds 
440f7b422b1SDavid Howells int __init nfs_init_readpagecache(void)
4411da177e4SLinus Torvalds {
4421da177e4SLinus Torvalds 	nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
4431e7f3a48SWeston Andros Adamson 					     sizeof(struct nfs_pgio_header),
4441da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
44520c2df83SPaul Mundt 					     NULL);
4461da177e4SLinus Torvalds 	if (nfs_rdata_cachep == NULL)
4471da177e4SLinus Torvalds 		return -ENOMEM;
4481da177e4SLinus Torvalds 
4491da177e4SLinus Torvalds 	return 0;
4501da177e4SLinus Torvalds }
4511da177e4SLinus Torvalds 
452266bee88SDavid Brownell void nfs_destroy_readpagecache(void)
4531da177e4SLinus Torvalds {
4541a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_rdata_cachep);
4551da177e4SLinus Torvalds }
4564a0de55cSAnna Schumaker 
4574a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_read_ops = {
4584a0de55cSAnna Schumaker 	.rw_alloc_header	= nfs_readhdr_alloc,
4594a0de55cSAnna Schumaker 	.rw_free_header		= nfs_readhdr_free,
4600eecb214SAnna Schumaker 	.rw_done		= nfs_readpage_done,
4610eecb214SAnna Schumaker 	.rw_result		= nfs_readpage_result,
4621ed26f33SAnna Schumaker 	.rw_initiate		= nfs_initiate_read,
4634a0de55cSAnna Schumaker };
464