xref: /openbmc/linux/fs/nfs/read.c (revision 68072992c8f6ace57fe80b6fb5d57b3ae887a09d)
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 
364a0de55cSAnna Schumaker static struct nfs_rw_header *nfs_readhdr_alloc(void)
373feb2d49STrond Myklebust {
384a0de55cSAnna Schumaker 	return kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
394db6e0b7SFred Isaman }
404db6e0b7SFred Isaman 
414a0de55cSAnna Schumaker static void nfs_readhdr_free(struct nfs_rw_header *rhdr)
423feb2d49STrond Myklebust {
43cd841605SFred Isaman 	kmem_cache_free(nfs_rdata_cachep, rhdr);
443feb2d49STrond Myklebust }
453feb2d49STrond Myklebust 
461da177e4SLinus Torvalds static
471da177e4SLinus Torvalds int nfs_return_empty_page(struct page *page)
481da177e4SLinus Torvalds {
49eebd2aa3SChristoph Lameter 	zero_user(page, 0, PAGE_CACHE_SIZE);
501da177e4SLinus Torvalds 	SetPageUptodate(page);
511da177e4SLinus Torvalds 	unlock_page(page);
521da177e4SLinus Torvalds 	return 0;
531da177e4SLinus Torvalds }
541da177e4SLinus Torvalds 
551abb5088SBryan Schumaker void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
56fab5fc25SChristoph Hellwig 			      struct inode *inode, bool force_mds,
57061ae2edSFred Isaman 			      const struct nfs_pgio_completion_ops *compl_ops)
581751c363STrond Myklebust {
59fab5fc25SChristoph Hellwig 	struct nfs_server *server = NFS_SERVER(inode);
6041d8d5b7SAnna Schumaker 	const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
61fab5fc25SChristoph Hellwig 
62fab5fc25SChristoph Hellwig #ifdef CONFIG_NFS_V4_1
63fab5fc25SChristoph Hellwig 	if (server->pnfs_curr_ld && !force_mds)
64fab5fc25SChristoph Hellwig 		pg_ops = server->pnfs_curr_ld->pg_read_ops;
65fab5fc25SChristoph Hellwig #endif
664a0de55cSAnna Schumaker 	nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
674a0de55cSAnna Schumaker 			server->rsize, 0);
681751c363STrond Myklebust }
69ddda8e0aSBryan Schumaker EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
701751c363STrond Myklebust 
71493292ddSTrond Myklebust void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
72493292ddSTrond Myklebust {
7341d8d5b7SAnna Schumaker 	pgio->pg_ops = &nfs_pgio_rw_ops;
74493292ddSTrond Myklebust 	pgio->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
75493292ddSTrond Myklebust }
761f945357STrond Myklebust EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
77493292ddSTrond Myklebust 
78f42b293dSDavid Howells int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
791da177e4SLinus Torvalds 		       struct page *page)
801da177e4SLinus Torvalds {
811da177e4SLinus Torvalds 	struct nfs_page	*new;
821da177e4SLinus Torvalds 	unsigned int len;
83c76069bdSFred Isaman 	struct nfs_pageio_descriptor pgio;
841da177e4SLinus Torvalds 
8549a70f27STrond Myklebust 	len = nfs_page_length(page);
861da177e4SLinus Torvalds 	if (len == 0)
871da177e4SLinus Torvalds 		return nfs_return_empty_page(page);
882bfc6e56SWeston Andros Adamson 	new = nfs_create_request(ctx, page, NULL, 0, len);
891da177e4SLinus Torvalds 	if (IS_ERR(new)) {
901da177e4SLinus Torvalds 		unlock_page(page);
911da177e4SLinus Torvalds 		return PTR_ERR(new);
921da177e4SLinus Torvalds 	}
931da177e4SLinus Torvalds 	if (len < PAGE_CACHE_SIZE)
94eebd2aa3SChristoph Lameter 		zero_user_segment(page, len, PAGE_CACHE_SIZE);
951da177e4SLinus Torvalds 
96fab5fc25SChristoph Hellwig 	nfs_pageio_init_read(&pgio, inode, false,
97fab5fc25SChristoph Hellwig 			     &nfs_async_read_completion_ops);
98d8007d4dSTrond Myklebust 	nfs_pageio_add_request(&pgio, new);
991751c363STrond Myklebust 	nfs_pageio_complete(&pgio);
1002701d086SAndy Adamson 	NFS_I(inode)->read_io += pgio.pg_bytes_written;
1011da177e4SLinus Torvalds 	return 0;
1021da177e4SLinus Torvalds }
1031da177e4SLinus Torvalds 
1041da177e4SLinus Torvalds static void nfs_readpage_release(struct nfs_page *req)
1051da177e4SLinus Torvalds {
1063d4ff43dSAl Viro 	struct inode *d_inode = req->wb_context->dentry->d_inode;
1077f8e05f6SDavid Howells 
10867d0338eSWeston Andros Adamson 	dprintk("NFS: read done (%s/%llu %d@%lld)\n", d_inode->i_sb->s_id,
10967d0338eSWeston Andros Adamson 		(unsigned long long)NFS_FILEID(d_inode), req->wb_bytes,
11067d0338eSWeston Andros Adamson 		(long long)req_offset(req));
11167d0338eSWeston Andros Adamson 
11267d0338eSWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
1137f8e05f6SDavid Howells 		if (PageUptodate(req->wb_page))
1147f8e05f6SDavid Howells 			nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
1157f8e05f6SDavid Howells 
1161da177e4SLinus Torvalds 		unlock_page(req->wb_page);
11767d0338eSWeston Andros Adamson 	}
1181da177e4SLinus Torvalds 
1191e8968c5SNiels de Vos 	dprintk("NFS: read done (%s/%Lu %d@%Ld)\n",
1203d4ff43dSAl Viro 			req->wb_context->dentry->d_inode->i_sb->s_id,
1211e8968c5SNiels de Vos 			(unsigned long long)NFS_FILEID(req->wb_context->dentry->d_inode),
1221da177e4SLinus Torvalds 			req->wb_bytes,
1231da177e4SLinus Torvalds 			(long long)req_offset(req));
12410d2c46fSNick Wilson 	nfs_release_request(req);
1251da177e4SLinus Torvalds }
1261da177e4SLinus Torvalds 
12767d0338eSWeston Andros Adamson static void nfs_page_group_set_uptodate(struct nfs_page *req)
12867d0338eSWeston Andros Adamson {
12967d0338eSWeston Andros Adamson 	if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
13067d0338eSWeston Andros Adamson 		SetPageUptodate(req->wb_page);
13167d0338eSWeston Andros Adamson }
13267d0338eSWeston Andros Adamson 
133061ae2edSFred Isaman static void nfs_read_completion(struct nfs_pgio_header *hdr)
1344db6e0b7SFred Isaman {
1354db6e0b7SFred Isaman 	unsigned long bytes = 0;
1364db6e0b7SFred Isaman 
1374db6e0b7SFred Isaman 	if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
1384db6e0b7SFred Isaman 		goto out;
1394db6e0b7SFred Isaman 	while (!list_empty(&hdr->pages)) {
1404db6e0b7SFred Isaman 		struct nfs_page *req = nfs_list_entry(hdr->pages.next);
1414db6e0b7SFred Isaman 		struct page *page = req->wb_page;
142*68072992SWeston Andros Adamson 		unsigned long start = req->wb_pgbase;
143*68072992SWeston Andros Adamson 		unsigned long end = req->wb_pgbase + req->wb_bytes;
1444db6e0b7SFred Isaman 
1454db6e0b7SFred Isaman 		if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
146*68072992SWeston Andros Adamson 			/* note: regions of the page not covered by a
147*68072992SWeston Andros Adamson 			 * request are zeroed in nfs_readpage_async /
148*68072992SWeston Andros Adamson 			 * readpage_async_filler */
149*68072992SWeston Andros Adamson 			if (bytes > hdr->good_bytes) {
150*68072992SWeston Andros Adamson 				/* nothing in this request was good, so zero
151*68072992SWeston Andros Adamson 				 * the full extent of the request */
152*68072992SWeston Andros Adamson 				zero_user_segment(page, start, end);
153*68072992SWeston Andros Adamson 
154*68072992SWeston Andros Adamson 			} else if (hdr->good_bytes - bytes < req->wb_bytes) {
155*68072992SWeston Andros Adamson 				/* part of this request has good bytes, but
156*68072992SWeston Andros Adamson 				 * not all. zero the bad bytes */
157*68072992SWeston Andros Adamson 				start += hdr->good_bytes - bytes;
158*68072992SWeston Andros Adamson 				WARN_ON(start < req->wb_pgbase);
159*68072992SWeston Andros Adamson 				zero_user_segment(page, start, end);
160*68072992SWeston Andros Adamson 			}
1614db6e0b7SFred Isaman 		}
1624bd8b010STrond Myklebust 		bytes += req->wb_bytes;
1634bd8b010STrond Myklebust 		if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
1644bd8b010STrond Myklebust 			if (bytes <= hdr->good_bytes)
16567d0338eSWeston Andros Adamson 				nfs_page_group_set_uptodate(req);
1664bd8b010STrond Myklebust 		} else
16767d0338eSWeston Andros Adamson 			nfs_page_group_set_uptodate(req);
1684db6e0b7SFred Isaman 		nfs_list_remove_request(req);
1694db6e0b7SFred Isaman 		nfs_readpage_release(req);
1704db6e0b7SFred Isaman 	}
1714db6e0b7SFred Isaman out:
1724db6e0b7SFred Isaman 	hdr->release(hdr);
1734db6e0b7SFred Isaman }
1744db6e0b7SFred Isaman 
1751ed26f33SAnna Schumaker static void nfs_initiate_read(struct nfs_pgio_data *data, struct rpc_message *msg,
1761ed26f33SAnna Schumaker 			      struct rpc_task_setup *task_setup_data, int how)
17764419a9bSAndy Adamson {
178cd841605SFred Isaman 	struct inode *inode = data->header->inode;
17964419a9bSAndy Adamson 	int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
18064419a9bSAndy Adamson 
1811ed26f33SAnna Schumaker 	task_setup_data->flags |= swap_flags;
1821ed26f33SAnna Schumaker 	NFS_PROTO(inode)->read_setup(data, msg);
18364419a9bSAndy Adamson }
18464419a9bSAndy Adamson 
185061ae2edSFred Isaman static void
1861da177e4SLinus Torvalds nfs_async_read_error(struct list_head *head)
1871da177e4SLinus Torvalds {
1881da177e4SLinus Torvalds 	struct nfs_page	*req;
1891da177e4SLinus Torvalds 
1901da177e4SLinus Torvalds 	while (!list_empty(head)) {
1911da177e4SLinus Torvalds 		req = nfs_list_entry(head->next);
1921da177e4SLinus Torvalds 		nfs_list_remove_request(req);
1931da177e4SLinus Torvalds 		nfs_readpage_release(req);
1941da177e4SLinus Torvalds 	}
1951da177e4SLinus Torvalds }
1961da177e4SLinus Torvalds 
197061ae2edSFred Isaman static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
198061ae2edSFred Isaman 	.error_cleanup = nfs_async_read_error,
199061ae2edSFred Isaman 	.completion = nfs_read_completion,
200061ae2edSFred Isaman };
201061ae2edSFred Isaman 
2021da177e4SLinus Torvalds /*
2030b671301STrond Myklebust  * This is the callback from RPC telling us whether a reply was
2040b671301STrond Myklebust  * received or some error occurred (timeout or socket shutdown).
2050b671301STrond Myklebust  */
2060eecb214SAnna Schumaker static int nfs_readpage_done(struct rpc_task *task, struct nfs_pgio_data *data,
2070eecb214SAnna Schumaker 			     struct inode *inode)
2080b671301STrond Myklebust {
2090eecb214SAnna Schumaker 	int status = NFS_PROTO(inode)->read_done(task, data);
2100b671301STrond Myklebust 	if (status != 0)
2110b671301STrond Myklebust 		return status;
2120b671301STrond Myklebust 
213cd841605SFred Isaman 	nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, data->res.count);
2140b671301STrond Myklebust 
2150b671301STrond Myklebust 	if (task->tk_status == -ESTALE) {
216cd841605SFred Isaman 		set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
217cd841605SFred Isaman 		nfs_mark_for_revalidate(inode);
2180b671301STrond Myklebust 	}
2190b671301STrond Myklebust 	return 0;
2200b671301STrond Myklebust }
2210b671301STrond Myklebust 
2229c7e1b3dSAnna Schumaker static void nfs_readpage_retry(struct rpc_task *task, struct nfs_pgio_data *data)
2230b671301STrond Myklebust {
2243c6b899cSAnna Schumaker 	struct nfs_pgio_args *argp = &data->args;
2259137bdf3SAnna Schumaker 	struct nfs_pgio_res  *resp = &data->res;
2260b671301STrond Myklebust 
2270b671301STrond Myklebust 	/* This is a short read! */
228cd841605SFred Isaman 	nfs_inc_stats(data->header->inode, NFSIOS_SHORTREAD);
2290b671301STrond Myklebust 	/* Has the server at least made some progress? */
2304db6e0b7SFred Isaman 	if (resp->count == 0) {
2314db6e0b7SFred Isaman 		nfs_set_pgio_error(data->header, -EIO, argp->offset);
232d61e612aSTrond Myklebust 		return;
2334db6e0b7SFred Isaman 	}
2340b671301STrond Myklebust 	/* Yes, so retry the read at the end of the data */
235cbdabc7fSAndy Adamson 	data->mds_offset += resp->count;
2360b671301STrond Myklebust 	argp->offset += resp->count;
2370b671301STrond Myklebust 	argp->pgbase += resp->count;
2380b671301STrond Myklebust 	argp->count -= resp->count;
239d00c5d43STrond Myklebust 	rpc_restart_call_prepare(task);
2400b671301STrond Myklebust }
2410b671301STrond Myklebust 
2420eecb214SAnna Schumaker static void nfs_readpage_result(struct rpc_task *task, struct nfs_pgio_data *data)
2431da177e4SLinus Torvalds {
2444db6e0b7SFred Isaman 	struct nfs_pgio_header *hdr = data->header;
2451da177e4SLinus Torvalds 
2460eecb214SAnna Schumaker 	if (data->res.eof) {
2474db6e0b7SFred Isaman 		loff_t bound;
248fdd1e74cSTrond Myklebust 
2494db6e0b7SFred Isaman 		bound = data->args.offset + data->res.count;
2504db6e0b7SFred Isaman 		spin_lock(&hdr->lock);
2514db6e0b7SFred Isaman 		if (bound < hdr->io_start + hdr->good_bytes) {
2524db6e0b7SFred Isaman 			set_bit(NFS_IOHDR_EOF, &hdr->flags);
2534db6e0b7SFred Isaman 			clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
2544db6e0b7SFred Isaman 			hdr->good_bytes = bound - hdr->io_start;
2554db6e0b7SFred Isaman 		}
2564db6e0b7SFred Isaman 		spin_unlock(&hdr->lock);
2574db6e0b7SFred Isaman 	} else if (data->res.count != data->args.count)
258fdd1e74cSTrond Myklebust 		nfs_readpage_retry(task, data);
2590b671301STrond Myklebust }
260fdd1e74cSTrond Myklebust 
2611da177e4SLinus Torvalds /*
2621da177e4SLinus Torvalds  * Read a page over NFS.
2631da177e4SLinus Torvalds  * We read the page synchronously in the following case:
2641da177e4SLinus Torvalds  *  -	The error flag is set for this page. This happens only when a
2651da177e4SLinus Torvalds  *	previous async read operation failed.
2661da177e4SLinus Torvalds  */
2671da177e4SLinus Torvalds int nfs_readpage(struct file *file, struct page *page)
2681da177e4SLinus Torvalds {
2691da177e4SLinus Torvalds 	struct nfs_open_context *ctx;
270d56b4ddfSMel Gorman 	struct inode *inode = page_file_mapping(page)->host;
2711da177e4SLinus Torvalds 	int		error;
2721da177e4SLinus Torvalds 
2731da177e4SLinus Torvalds 	dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
274d56b4ddfSMel Gorman 		page, PAGE_CACHE_SIZE, page_file_index(page));
27591d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
27691d5b470SChuck Lever 	nfs_add_stats(inode, NFSIOS_READPAGES, 1);
27791d5b470SChuck Lever 
2781da177e4SLinus Torvalds 	/*
2791da177e4SLinus Torvalds 	 * Try to flush any pending writes to the file..
2801da177e4SLinus Torvalds 	 *
2811da177e4SLinus Torvalds 	 * NOTE! Because we own the page lock, there cannot
2821da177e4SLinus Torvalds 	 * be any new pending writes generated at this point
2831da177e4SLinus Torvalds 	 * for this page (other pages can be written to).
2841da177e4SLinus Torvalds 	 */
2851da177e4SLinus Torvalds 	error = nfs_wb_page(inode, page);
2861da177e4SLinus Torvalds 	if (error)
287de05a0ccSTrond Myklebust 		goto out_unlock;
288de05a0ccSTrond Myklebust 	if (PageUptodate(page))
289de05a0ccSTrond Myklebust 		goto out_unlock;
2901da177e4SLinus Torvalds 
2915f004cf2STrond Myklebust 	error = -ESTALE;
2925f004cf2STrond Myklebust 	if (NFS_STALE(inode))
293de05a0ccSTrond Myklebust 		goto out_unlock;
2945f004cf2STrond Myklebust 
2951da177e4SLinus Torvalds 	if (file == NULL) {
296cf1308ffSTrond Myklebust 		error = -EBADF;
297d530838bSTrond Myklebust 		ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
2981da177e4SLinus Torvalds 		if (ctx == NULL)
299de05a0ccSTrond Myklebust 			goto out_unlock;
3001da177e4SLinus Torvalds 	} else
301cd3758e3STrond Myklebust 		ctx = get_nfs_open_context(nfs_file_open_context(file));
3021da177e4SLinus Torvalds 
3039a9fc1c0SDavid Howells 	if (!IS_SYNC(inode)) {
3049a9fc1c0SDavid Howells 		error = nfs_readpage_from_fscache(ctx, inode, page);
3059a9fc1c0SDavid Howells 		if (error == 0)
3069a9fc1c0SDavid Howells 			goto out;
3079a9fc1c0SDavid Howells 	}
3089a9fc1c0SDavid Howells 
3098e0969f0STrond Myklebust 	error = nfs_readpage_async(ctx, inode, page);
3108e0969f0STrond Myklebust 
3119a9fc1c0SDavid Howells out:
3121da177e4SLinus Torvalds 	put_nfs_open_context(ctx);
3131da177e4SLinus Torvalds 	return error;
314de05a0ccSTrond Myklebust out_unlock:
3151da177e4SLinus Torvalds 	unlock_page(page);
3161da177e4SLinus Torvalds 	return error;
3171da177e4SLinus Torvalds }
3181da177e4SLinus Torvalds 
3191da177e4SLinus Torvalds struct nfs_readdesc {
3208b09bee3STrond Myklebust 	struct nfs_pageio_descriptor *pgio;
3211da177e4SLinus Torvalds 	struct nfs_open_context *ctx;
3221da177e4SLinus Torvalds };
3231da177e4SLinus Torvalds 
3241da177e4SLinus Torvalds static int
3251da177e4SLinus Torvalds readpage_async_filler(void *data, struct page *page)
3261da177e4SLinus Torvalds {
3271da177e4SLinus Torvalds 	struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
3281da177e4SLinus Torvalds 	struct nfs_page *new;
3291da177e4SLinus Torvalds 	unsigned int len;
330de05a0ccSTrond Myklebust 	int error;
3311da177e4SLinus Torvalds 
33249a70f27STrond Myklebust 	len = nfs_page_length(page);
3331da177e4SLinus Torvalds 	if (len == 0)
3341da177e4SLinus Torvalds 		return nfs_return_empty_page(page);
335de05a0ccSTrond Myklebust 
3362bfc6e56SWeston Andros Adamson 	new = nfs_create_request(desc->ctx, page, NULL, 0, len);
337de05a0ccSTrond Myklebust 	if (IS_ERR(new))
338de05a0ccSTrond Myklebust 		goto out_error;
339de05a0ccSTrond Myklebust 
3401da177e4SLinus Torvalds 	if (len < PAGE_CACHE_SIZE)
341eebd2aa3SChristoph Lameter 		zero_user_segment(page, len, PAGE_CACHE_SIZE);
342f8512ad0SFred Isaman 	if (!nfs_pageio_add_request(desc->pgio, new)) {
343f8512ad0SFred Isaman 		error = desc->pgio->pg_error;
344f8512ad0SFred Isaman 		goto out_unlock;
345f8512ad0SFred Isaman 	}
3461da177e4SLinus Torvalds 	return 0;
347de05a0ccSTrond Myklebust out_error:
348de05a0ccSTrond Myklebust 	error = PTR_ERR(new);
349de05a0ccSTrond Myklebust out_unlock:
350de05a0ccSTrond Myklebust 	unlock_page(page);
351de05a0ccSTrond Myklebust 	return error;
3521da177e4SLinus Torvalds }
3531da177e4SLinus Torvalds 
3541da177e4SLinus Torvalds int nfs_readpages(struct file *filp, struct address_space *mapping,
3551da177e4SLinus Torvalds 		struct list_head *pages, unsigned nr_pages)
3561da177e4SLinus Torvalds {
3578b09bee3STrond Myklebust 	struct nfs_pageio_descriptor pgio;
3581da177e4SLinus Torvalds 	struct nfs_readdesc desc = {
3598b09bee3STrond Myklebust 		.pgio = &pgio,
3601da177e4SLinus Torvalds 	};
3611da177e4SLinus Torvalds 	struct inode *inode = mapping->host;
3628b09bee3STrond Myklebust 	unsigned long npages;
3635f004cf2STrond Myklebust 	int ret = -ESTALE;
3641da177e4SLinus Torvalds 
3651e8968c5SNiels de Vos 	dprintk("NFS: nfs_readpages (%s/%Lu %d)\n",
3661da177e4SLinus Torvalds 			inode->i_sb->s_id,
3671e8968c5SNiels de Vos 			(unsigned long long)NFS_FILEID(inode),
3681da177e4SLinus Torvalds 			nr_pages);
36991d5b470SChuck Lever 	nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
3701da177e4SLinus Torvalds 
3715f004cf2STrond Myklebust 	if (NFS_STALE(inode))
3725f004cf2STrond Myklebust 		goto out;
3735f004cf2STrond Myklebust 
3741da177e4SLinus Torvalds 	if (filp == NULL) {
375d530838bSTrond Myklebust 		desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
3761da177e4SLinus Torvalds 		if (desc.ctx == NULL)
3771da177e4SLinus Torvalds 			return -EBADF;
3781da177e4SLinus Torvalds 	} else
379cd3758e3STrond Myklebust 		desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
3809a9fc1c0SDavid Howells 
3819a9fc1c0SDavid Howells 	/* attempt to read as many of the pages as possible from the cache
3829a9fc1c0SDavid Howells 	 * - this returns -ENOBUFS immediately if the cookie is negative
3839a9fc1c0SDavid Howells 	 */
3849a9fc1c0SDavid Howells 	ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
3859a9fc1c0SDavid Howells 					 pages, &nr_pages);
3869a9fc1c0SDavid Howells 	if (ret == 0)
3879a9fc1c0SDavid Howells 		goto read_complete; /* all pages were read */
3889a9fc1c0SDavid Howells 
389fab5fc25SChristoph Hellwig 	nfs_pageio_init_read(&pgio, inode, false,
390fab5fc25SChristoph Hellwig 			     &nfs_async_read_completion_ops);
3918b09bee3STrond Myklebust 
3921da177e4SLinus Torvalds 	ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
3938b09bee3STrond Myklebust 
3948b09bee3STrond Myklebust 	nfs_pageio_complete(&pgio);
3952701d086SAndy Adamson 	NFS_I(inode)->read_io += pgio.pg_bytes_written;
3968b09bee3STrond Myklebust 	npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
3978b09bee3STrond Myklebust 	nfs_add_stats(inode, NFSIOS_READPAGES, npages);
3989a9fc1c0SDavid Howells read_complete:
3991da177e4SLinus Torvalds 	put_nfs_open_context(desc.ctx);
4005f004cf2STrond Myklebust out:
4011da177e4SLinus Torvalds 	return ret;
4021da177e4SLinus Torvalds }
4031da177e4SLinus Torvalds 
404f7b422b1SDavid Howells int __init nfs_init_readpagecache(void)
4051da177e4SLinus Torvalds {
4061da177e4SLinus Torvalds 	nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
407c0752cdfSAnna Schumaker 					     sizeof(struct nfs_rw_header),
4081da177e4SLinus Torvalds 					     0, SLAB_HWCACHE_ALIGN,
40920c2df83SPaul Mundt 					     NULL);
4101da177e4SLinus Torvalds 	if (nfs_rdata_cachep == NULL)
4111da177e4SLinus Torvalds 		return -ENOMEM;
4121da177e4SLinus Torvalds 
4131da177e4SLinus Torvalds 	return 0;
4141da177e4SLinus Torvalds }
4151da177e4SLinus Torvalds 
416266bee88SDavid Brownell void nfs_destroy_readpagecache(void)
4171da177e4SLinus Torvalds {
4181a1d92c1SAlexey Dobriyan 	kmem_cache_destroy(nfs_rdata_cachep);
4191da177e4SLinus Torvalds }
4204a0de55cSAnna Schumaker 
4214a0de55cSAnna Schumaker static const struct nfs_rw_ops nfs_rw_read_ops = {
422a4cdda59SAnna Schumaker 	.rw_mode		= FMODE_READ,
4234a0de55cSAnna Schumaker 	.rw_alloc_header	= nfs_readhdr_alloc,
4244a0de55cSAnna Schumaker 	.rw_free_header		= nfs_readhdr_free,
4250eecb214SAnna Schumaker 	.rw_done		= nfs_readpage_done,
4260eecb214SAnna Schumaker 	.rw_result		= nfs_readpage_result,
4271ed26f33SAnna Schumaker 	.rw_initiate		= nfs_initiate_read,
4284a0de55cSAnna Schumaker };
429