blob: 87546cd277d581307d362a0a1d8e049b1478062a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/read.c
3 *
4 * Block I/O for NFS
5 *
6 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
7 * modified for async RPC by okir@monad.swb.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/time.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/fcntl.h>
14#include <linux/stat.h>
15#include <linux/mm.h>
16#include <linux/slab.h>
17#include <linux/pagemap.h>
18#include <linux/sunrpc/clnt.h>
19#include <linux/nfs_fs.h>
20#include <linux/nfs_page.h>
21#include <linux/smp_lock.h>
22
23#include <asm/system.h>
24
Trond Myklebust49a70f22006-12-05 00:35:38 -050025#include "internal.h"
Chuck Lever91d5b472006-03-20 13:44:14 -050026#include "iostat.h"
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define NFSDBG_FACILITY NFSDBG_PAGECACHE
29
Trond Myklebust8d5658c2007-04-10 09:26:35 -040030static int nfs_pagein_multi(struct inode *, struct list_head *, unsigned int, size_t, int);
31static int nfs_pagein_one(struct inode *, struct list_head *, unsigned int, size_t, int);
Trond Myklebustec06c092006-03-20 13:44:27 -050032static const struct rpc_call_ops nfs_read_partial_ops;
33static const struct rpc_call_ops nfs_read_full_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Christoph Lametere18b8902006-12-06 20:33:20 -080035static struct kmem_cache *nfs_rdata_cachep;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050036static mempool_t *nfs_rdata_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#define MIN_POOL_READ (32)
39
Trond Myklebust8d5658c2007-04-10 09:26:35 -040040struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050041{
Christoph Lametere6b4f8d2006-12-06 20:33:14 -080042 struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, GFP_NOFS);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050043
44 if (p) {
45 memset(p, 0, sizeof(*p));
46 INIT_LIST_HEAD(&p->pages);
Trond Myklebuste9f7bee2006-09-08 09:48:54 -070047 p->npages = pagecount;
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040048 if (pagecount <= ARRAY_SIZE(p->page_array))
49 p->pagevec = p->page_array;
Trond Myklebust3feb2d42006-03-20 13:44:37 -050050 else {
Chuck Lever0d0b5cb2006-05-25 01:40:53 -040051 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_NOFS);
52 if (!p->pagevec) {
Trond Myklebust3feb2d42006-03-20 13:44:37 -050053 mempool_free(p, nfs_rdata_mempool);
54 p = NULL;
55 }
56 }
57 }
58 return p;
59}
60
Trond Myklebust8aca67f2006-11-13 16:23:44 -050061static void nfs_readdata_rcu_free(struct rcu_head *head)
Trond Myklebust3feb2d42006-03-20 13:44:37 -050062{
Trond Myklebust8aca67f2006-11-13 16:23:44 -050063 struct nfs_read_data *p = container_of(head, struct nfs_read_data, task.u.tk_rcu);
Trond Myklebust3feb2d42006-03-20 13:44:37 -050064 if (p && (p->pagevec != &p->page_array[0]))
65 kfree(p->pagevec);
66 mempool_free(p, nfs_rdata_mempool);
67}
68
Trond Myklebust8aca67f2006-11-13 16:23:44 -050069static void nfs_readdata_free(struct nfs_read_data *rdata)
70{
71 call_rcu_bh(&rdata->task.u.tk_rcu, nfs_readdata_rcu_free);
72}
73
Trond Myklebust963d8fe2006-01-03 09:55:04 +010074void nfs_readdata_release(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Trond Myklebust383ba712008-02-19 20:04:20 -050076 struct nfs_read_data *rdata = data;
77
78 put_nfs_open_context(rdata->args.context);
79 nfs_readdata_free(rdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82static
Linus Torvalds1da177e2005-04-16 15:20:36 -070083int nfs_return_empty_page(struct page *page)
84{
Christoph Lametereebd2aa2008-02-04 22:28:29 -080085 zero_user(page, 0, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 SetPageUptodate(page);
87 unlock_page(page);
88 return 0;
89}
90
Trond Myklebust1de3fc12006-05-25 01:40:44 -040091static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data)
92{
93 unsigned int remainder = data->args.count - data->res.count;
94 unsigned int base = data->args.pgbase + data->res.count;
95 unsigned int pglen;
96 struct page **pages;
97
98 if (data->res.eof == 0 || remainder == 0)
99 return;
100 /*
101 * Note: "remainder" can never be negative, since we check for
102 * this in the XDR code.
103 */
104 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
105 base &= ~PAGE_CACHE_MASK;
106 pglen = PAGE_CACHE_SIZE - base;
Trond Myklebust79558f32006-08-22 13:44:32 -0400107 for (;;) {
108 if (remainder <= pglen) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800109 zero_user(*pages, base, remainder);
Trond Myklebust79558f32006-08-22 13:44:32 -0400110 break;
111 }
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800112 zero_user(*pages, base, pglen);
Trond Myklebust79558f32006-08-22 13:44:32 -0400113 pages++;
114 remainder -= pglen;
115 pglen = PAGE_CACHE_SIZE;
116 base = 0;
117 }
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120static int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
121 struct page *page)
122{
123 LIST_HEAD(one_request);
124 struct nfs_page *new;
125 unsigned int len;
126
Trond Myklebust49a70f22006-12-05 00:35:38 -0500127 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (len == 0)
129 return nfs_return_empty_page(page);
130 new = nfs_create_request(ctx, inode, page, 0, len);
131 if (IS_ERR(new)) {
132 unlock_page(page);
133 return PTR_ERR(new);
134 }
135 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800136 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 nfs_list_add_request(new, &one_request);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400139 if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE)
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400140 nfs_pagein_multi(inode, &one_request, 1, len, 0);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400141 else
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400142 nfs_pagein_one(inode, &one_request, 1, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return 0;
144}
145
146static void nfs_readpage_release(struct nfs_page *req)
147{
148 unlock_page(req->wb_page);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400151 req->wb_context->path.dentry->d_inode->i_sb->s_id,
152 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 req->wb_bytes,
154 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700155 nfs_clear_request(req);
156 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * Set up the NFS read request struct
161 */
162static void nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data,
Trond Myklebustec06c092006-03-20 13:44:27 -0500163 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 unsigned int count, unsigned int offset)
165{
Trond Myklebust84115e12007-07-14 15:39:59 -0400166 struct inode *inode = req->wb_context->path.dentry->d_inode;
167 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
Trond Myklebust07737692007-10-25 18:42:54 -0400168 struct rpc_task *task;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400169 struct rpc_message msg = {
170 .rpc_argp = &data->args,
171 .rpc_resp = &data->res,
172 .rpc_cred = req->wb_context->cred,
173 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400174 struct rpc_task_setup task_setup_data = {
Trond Myklebust07737692007-10-25 18:42:54 -0400175 .task = &data->task,
Trond Myklebust84115e12007-07-14 15:39:59 -0400176 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400177 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400178 .callback_ops = call_ops,
179 .callback_data = data,
Trond Myklebust101070c2008-02-19 20:04:23 -0500180 .workqueue = nfsiod_workqueue,
Trond Myklebust84115e12007-07-14 15:39:59 -0400181 .flags = RPC_TASK_ASYNC | swap_flags,
182 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 data->req = req;
Trond Myklebust84115e12007-07-14 15:39:59 -0400185 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400186 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 data->args.fh = NFS_FH(inode);
189 data->args.offset = req_offset(req) + offset;
190 data->args.pgbase = req->wb_pgbase + offset;
191 data->args.pages = data->pagevec;
192 data->args.count = count;
Trond Myklebust383ba712008-02-19 20:04:20 -0500193 data->args.context = get_nfs_open_context(req->wb_context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 data->res.fattr = &data->fattr;
196 data->res.count = count;
197 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400198 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Trond Myklebustec06c092006-03-20 13:44:27 -0500200 /* Set up the initial task struct. */
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400201 NFS_PROTO(inode)->read_setup(data, &msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Chuck Levera3f565b2007-01-31 12:14:01 -0500203 dprintk("NFS: %5u initiated read call (req %s/%Ld, %u bytes @ offset %Lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 data->task.tk_pid,
205 inode->i_sb->s_id,
206 (long long)NFS_FILEID(inode),
207 count,
208 (unsigned long long)data->args.offset);
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400209
Trond Myklebust07737692007-10-25 18:42:54 -0400210 task = rpc_run_task(&task_setup_data);
211 if (!IS_ERR(task))
212 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215static void
216nfs_async_read_error(struct list_head *head)
217{
218 struct nfs_page *req;
219
220 while (!list_empty(head)) {
221 req = nfs_list_entry(head->next);
222 nfs_list_remove_request(req);
223 SetPageError(req->wb_page);
224 nfs_readpage_release(req);
225 }
226}
227
228/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * Generate multiple requests to fill a single page.
230 *
231 * We optimize to reduce the number of read operations on the wire. If we
232 * detect that we're reading a page, or an area of a page, that is past the
233 * end of file, we do not generate NFS read operations but just clear the
234 * parts of the page that would have come back zero from the server anyway.
235 *
236 * We rely on the cached value of i_size to make this determination; another
237 * client can fill pages on the server past our cached end-of-file, but we
238 * won't see the new data until our attribute cache is updated. This is more
239 * or less conventional NFS client behavior.
240 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400241static int nfs_pagein_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct nfs_page *req = nfs_list_entry(head->next);
244 struct page *page = req->wb_page;
245 struct nfs_read_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700246 size_t rsize = NFS_SERVER(inode)->rsize, nbytes;
247 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int requests = 0;
249 LIST_HEAD(list);
250
251 nfs_list_remove_request(req);
252
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400253 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700254 do {
255 size_t len = min(nbytes,rsize);
256
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400257 data = nfs_readdata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (!data)
259 goto out_bad;
260 INIT_LIST_HEAD(&data->pages);
261 list_add(&data->pages, &list);
262 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700263 nbytes -= len;
264 } while(nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 atomic_set(&req->wb_complete, requests);
266
267 ClearPageError(page);
268 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400269 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 do {
271 data = list_entry(list.next, struct nfs_read_data, pages);
272 list_del_init(&data->pages);
273
274 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400276 if (nbytes < rsize)
277 rsize = nbytes;
278 nfs_read_rpcsetup(req, data, &nfs_read_partial_ops,
279 rsize, offset);
280 offset += rsize;
281 nbytes -= rsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 } while (nbytes != 0);
283
284 return 0;
285
286out_bad:
287 while (!list_empty(&list)) {
288 data = list_entry(list.next, struct nfs_read_data, pages);
289 list_del(&data->pages);
290 nfs_readdata_free(data);
291 }
292 SetPageError(page);
293 nfs_readpage_release(req);
294 return -ENOMEM;
295}
296
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400297static int nfs_pagein_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct nfs_page *req;
300 struct page **pages;
301 struct nfs_read_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400303 data = nfs_readdata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (!data)
305 goto out_bad;
306
307 INIT_LIST_HEAD(&data->pages);
308 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 while (!list_empty(head)) {
310 req = nfs_list_entry(head->next);
311 nfs_list_remove_request(req);
312 nfs_list_add_request(req, &data->pages);
313 ClearPageError(req->wb_page);
314 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316 req = nfs_list_entry(data->pages.next);
317
Trond Myklebustec06c092006-03-20 13:44:27 -0500318 nfs_read_rpcsetup(req, data, &nfs_read_full_ops, count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 0;
320out_bad:
321 nfs_async_read_error(head);
322 return -ENOMEM;
323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500326 * This is the callback from RPC telling us whether a reply was
327 * received or some error occurred (timeout or socket shutdown).
328 */
329int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
330{
331 int status;
332
Chuck Levera3f565b2007-01-31 12:14:01 -0500333 dprintk("NFS: %s: %5u, (status %d)\n", __FUNCTION__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500334 task->tk_status);
335
336 status = NFS_PROTO(data->inode)->read_done(task, data);
337 if (status != 0)
338 return status;
339
340 nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count);
341
342 if (task->tk_status == -ESTALE) {
Benny Halevy3a10c302008-01-23 08:58:59 +0200343 set_bit(NFS_INO_STALE, &NFS_I(data->inode)->flags);
Trond Myklebust0b671302006-11-14 16:12:23 -0500344 nfs_mark_for_revalidate(data->inode);
345 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500346 return 0;
347}
348
349static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
350{
351 struct nfs_readargs *argp = &data->args;
352 struct nfs_readres *resp = &data->res;
353
354 if (resp->eof || resp->count == argp->count)
355 return 0;
356
357 /* This is a short read! */
358 nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
359 /* Has the server at least made some progress? */
360 if (resp->count == 0)
361 return 0;
362
363 /* Yes, so retry the read at the end of the data */
364 argp->offset += resp->count;
365 argp->pgbase += resp->count;
366 argp->count -= resp->count;
367 rpc_restart_call(task);
368 return -EAGAIN;
369}
370
371/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 * Handle a read reply that fills part of a page.
373 */
Trond Myklebustec06c092006-03-20 13:44:27 -0500374static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Trond Myklebustec06c092006-03-20 13:44:27 -0500376 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct nfs_page *req = data->req;
378 struct page *page = req->wb_page;
379
Trond Myklebustec06c092006-03-20 13:44:27 -0500380 if (nfs_readpage_result(task, data) != 0)
381 return;
Trond Myklebust0b671302006-11-14 16:12:23 -0500382
383 if (likely(task->tk_status >= 0)) {
384 nfs_readpage_truncate_uninitialised_page(data);
385 if (nfs_readpage_retry(task, data) != 0)
386 return;
387 }
388 if (unlikely(task->tk_status < 0))
389 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (atomic_dec_and_test(&req->wb_complete)) {
391 if (!PageError(page))
392 SetPageUptodate(page);
393 nfs_readpage_release(req);
394 }
395}
396
Trond Myklebustec06c092006-03-20 13:44:27 -0500397static const struct rpc_call_ops nfs_read_partial_ops = {
398 .rpc_call_done = nfs_readpage_result_partial,
399 .rpc_release = nfs_readdata_release,
400};
401
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400402static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
403{
404 unsigned int count = data->res.count;
405 unsigned int base = data->args.pgbase;
406 struct page **pages;
407
Trond Myklebust79558f32006-08-22 13:44:32 -0400408 if (data->res.eof)
409 count = data->args.count;
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400410 if (unlikely(count == 0))
411 return;
412 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
413 base &= ~PAGE_CACHE_MASK;
414 count += base;
415 for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++)
416 SetPageUptodate(*pages);
Trond Myklebust0b671302006-11-14 16:12:23 -0500417 if (count == 0)
418 return;
419 /* Was this a short read? */
420 if (data->res.eof || data->res.count == data->args.count)
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400421 SetPageUptodate(*pages);
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/*
425 * This is the callback from RPC telling us whether a reply was
426 * received or some error occurred (timeout or socket shutdown).
427 */
Trond Myklebustec06c092006-03-20 13:44:27 -0500428static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Trond Myklebustec06c092006-03-20 13:44:27 -0500430 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Trond Myklebust0b671302006-11-14 16:12:23 -0500432 if (nfs_readpage_result(task, data) != 0)
433 return;
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400434 /*
Trond Myklebust0b671302006-11-14 16:12:23 -0500435 * Note: nfs_readpage_retry may change the values of
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400436 * data->args. In the multi-page case, we therefore need
Trond Myklebust0b671302006-11-14 16:12:23 -0500437 * to ensure that we call nfs_readpage_set_pages_uptodate()
438 * first.
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400439 */
440 if (likely(task->tk_status >= 0)) {
441 nfs_readpage_truncate_uninitialised_page(data);
442 nfs_readpage_set_pages_uptodate(data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500443 if (nfs_readpage_retry(task, data) != 0)
444 return;
445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 while (!list_empty(&data->pages)) {
447 struct nfs_page *req = nfs_list_entry(data->pages.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400449 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 nfs_readpage_release(req);
451 }
452}
453
Trond Myklebustec06c092006-03-20 13:44:27 -0500454static const struct rpc_call_ops nfs_read_full_ops = {
455 .rpc_call_done = nfs_readpage_result_full,
456 .rpc_release = nfs_readdata_release,
457};
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * Read a page over NFS.
461 * We read the page synchronously in the following case:
462 * - The error flag is set for this page. This happens only when a
463 * previous async read operation failed.
464 */
465int nfs_readpage(struct file *file, struct page *page)
466{
467 struct nfs_open_context *ctx;
468 struct inode *inode = page->mapping->host;
469 int error;
470
471 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
472 page, PAGE_CACHE_SIZE, page->index);
Chuck Lever91d5b472006-03-20 13:44:14 -0500473 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
474 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /*
477 * Try to flush any pending writes to the file..
478 *
479 * NOTE! Because we own the page lock, there cannot
480 * be any new pending writes generated at this point
481 * for this page (other pages can be written to).
482 */
483 error = nfs_wb_page(inode, page);
484 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400485 goto out_unlock;
486 if (PageUptodate(page))
487 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400489 error = -ESTALE;
490 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400491 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500494 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500495 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400497 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400499 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500501 error = nfs_readpage_async(ctx, inode, page);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 put_nfs_open_context(ctx);
504 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400505out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 unlock_page(page);
507 return error;
508}
509
510struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400511 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct nfs_open_context *ctx;
513};
514
515static int
516readpage_async_filler(void *data, struct page *page)
517{
518 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
519 struct inode *inode = page->mapping->host;
520 struct nfs_page *new;
521 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400522 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400524 error = nfs_wb_page(inode, page);
525 if (error)
526 goto out_unlock;
527 if (PageUptodate(page))
528 goto out_unlock;
529
Trond Myklebust49a70f22006-12-05 00:35:38 -0500530 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (len == 0)
532 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400535 if (IS_ERR(new))
536 goto out_error;
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (len < PAGE_CACHE_SIZE)
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800539 zero_user_segment(page, len, PAGE_CACHE_SIZE);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400540 nfs_pageio_add_request(desc->pgio, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400542out_error:
543 error = PTR_ERR(new);
544 SetPageError(page);
545out_unlock:
546 unlock_page(page);
547 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550int nfs_readpages(struct file *filp, struct address_space *mapping,
551 struct list_head *pages, unsigned nr_pages)
552{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400553 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400555 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 };
557 struct inode *inode = mapping->host;
558 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400559 size_t rsize = server->rsize;
560 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400561 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
564 inode->i_sb->s_id,
565 (long long)NFS_FILEID(inode),
566 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500567 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400569 if (NFS_STALE(inode))
570 goto out;
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500573 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (desc.ctx == NULL)
575 return -EBADF;
576 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400577 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400578 if (rsize < PAGE_CACHE_SIZE)
579 nfs_pageio_init(&pgio, inode, nfs_pagein_multi, rsize, 0);
580 else
581 nfs_pageio_init(&pgio, inode, nfs_pagein_one, rsize, 0);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400584
585 nfs_pageio_complete(&pgio);
586 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
587 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400589out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return ret;
591}
592
David Howellsf7b422b2006-06-09 09:34:33 -0400593int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
596 sizeof(struct nfs_read_data),
597 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900598 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (nfs_rdata_cachep == NULL)
600 return -ENOMEM;
601
Matthew Dobson93d23412006-03-26 01:37:50 -0800602 nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ,
603 nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (nfs_rdata_mempool == NULL)
605 return -ENOMEM;
606
607 return 0;
608}
609
David Brownell266bee82006-06-27 12:59:15 -0700610void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 mempool_destroy(nfs_rdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700613 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}