NFSv4.1: lseg refcounting
[linux-2.6-block.git] / fs / nfs / read.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
8 */
9
1da177e4
LT
10#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>
1da177e4
LT
21
22#include <asm/system.h>
23
f11c88af 24#include "nfs4_fs.h"
49a70f27 25#include "internal.h"
91d5b470 26#include "iostat.h"
9a9fc1c0 27#include "fscache.h"
e5e94017 28#include "pnfs.h"
91d5b470 29
1da177e4
LT
30#define NFSDBG_FACILITY NFSDBG_PAGECACHE
31
8d5658c9
TM
32static int nfs_pagein_multi(struct inode *, struct list_head *, unsigned int, size_t, int);
33static int nfs_pagein_one(struct inode *, struct list_head *, unsigned int, size_t, int);
ec06c096
TM
34static const struct rpc_call_ops nfs_read_partial_ops;
35static const struct rpc_call_ops nfs_read_full_ops;
1da177e4 36
e18b890b 37static struct kmem_cache *nfs_rdata_cachep;
3feb2d49 38static mempool_t *nfs_rdata_mempool;
1da177e4
LT
39
40#define MIN_POOL_READ (32)
41
8d5658c9 42struct nfs_read_data *nfs_readdata_alloc(unsigned int pagecount)
3feb2d49 43{
93870d76 44 struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, GFP_KERNEL);
3feb2d49
TM
45
46 if (p) {
47 memset(p, 0, sizeof(*p));
48 INIT_LIST_HEAD(&p->pages);
e9f7bee1 49 p->npages = pagecount;
0d0b5cb3
CL
50 if (pagecount <= ARRAY_SIZE(p->page_array))
51 p->pagevec = p->page_array;
3feb2d49 52 else {
93870d76 53 p->pagevec = kcalloc(pagecount, sizeof(struct page *), GFP_KERNEL);
0d0b5cb3 54 if (!p->pagevec) {
3feb2d49
TM
55 mempool_free(p, nfs_rdata_mempool);
56 p = NULL;
57 }
58 }
59 }
60 return p;
61}
62
1ae88b2e 63void nfs_readdata_free(struct nfs_read_data *p)
3feb2d49
TM
64{
65 if (p && (p->pagevec != &p->page_array[0]))
66 kfree(p->pagevec);
67 mempool_free(p, nfs_rdata_mempool);
68}
69
1ae88b2e 70static void nfs_readdata_release(struct nfs_read_data *rdata)
1da177e4 71{
383ba719
TM
72 put_nfs_open_context(rdata->args.context);
73 nfs_readdata_free(rdata);
1da177e4
LT
74}
75
1da177e4
LT
76static
77int nfs_return_empty_page(struct page *page)
78{
eebd2aa3 79 zero_user(page, 0, PAGE_CACHE_SIZE);
1da177e4
LT
80 SetPageUptodate(page);
81 unlock_page(page);
82 return 0;
83}
84
1de3fc12
TM
85static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data)
86{
87 unsigned int remainder = data->args.count - data->res.count;
88 unsigned int base = data->args.pgbase + data->res.count;
89 unsigned int pglen;
90 struct page **pages;
91
92 if (data->res.eof == 0 || remainder == 0)
93 return;
94 /*
95 * Note: "remainder" can never be negative, since we check for
96 * this in the XDR code.
97 */
98 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
99 base &= ~PAGE_CACHE_MASK;
100 pglen = PAGE_CACHE_SIZE - base;
79558f36
TM
101 for (;;) {
102 if (remainder <= pglen) {
eebd2aa3 103 zero_user(*pages, base, remainder);
79558f36
TM
104 break;
105 }
eebd2aa3 106 zero_user(*pages, base, pglen);
79558f36
TM
107 pages++;
108 remainder -= pglen;
109 pglen = PAGE_CACHE_SIZE;
110 base = 0;
111 }
1de3fc12
TM
112}
113
f42b293d
DH
114int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
115 struct page *page)
1da177e4
LT
116{
117 LIST_HEAD(one_request);
118 struct nfs_page *new;
119 unsigned int len;
120
49a70f27 121 len = nfs_page_length(page);
1da177e4
LT
122 if (len == 0)
123 return nfs_return_empty_page(page);
e5e94017 124 pnfs_update_layout(inode, ctx, IOMODE_READ);
1da177e4
LT
125 new = nfs_create_request(ctx, inode, page, 0, len);
126 if (IS_ERR(new)) {
127 unlock_page(page);
128 return PTR_ERR(new);
129 }
130 if (len < PAGE_CACHE_SIZE)
eebd2aa3 131 zero_user_segment(page, len, PAGE_CACHE_SIZE);
1da177e4 132
1da177e4 133 nfs_list_add_request(new, &one_request);
bcb71bba 134 if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE)
8d5658c9 135 nfs_pagein_multi(inode, &one_request, 1, len, 0);
bcb71bba 136 else
8d5658c9 137 nfs_pagein_one(inode, &one_request, 1, len, 0);
1da177e4
LT
138 return 0;
139}
140
141static void nfs_readpage_release(struct nfs_page *req)
142{
7f8e05f6
DH
143 struct inode *d_inode = req->wb_context->path.dentry->d_inode;
144
145 if (PageUptodate(req->wb_page))
146 nfs_readpage_to_fscache(d_inode, req->wb_page, 0);
147
1da177e4
LT
148 unlock_page(req->wb_page);
149
1da177e4 150 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
88be9f99
TM
151 req->wb_context->path.dentry->d_inode->i_sb->s_id,
152 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
1da177e4
LT
153 req->wb_bytes,
154 (long long)req_offset(req));
10d2c46f 155 nfs_release_request(req);
1da177e4
LT
156}
157
158/*
159 * Set up the NFS read request struct
160 */
dbae4c73 161static int nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data,
ec06c096 162 const struct rpc_call_ops *call_ops,
1da177e4
LT
163 unsigned int count, unsigned int offset)
164{
84115e1c
TM
165 struct inode *inode = req->wb_context->path.dentry->d_inode;
166 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
07737691 167 struct rpc_task *task;
bdc7f021
TM
168 struct rpc_message msg = {
169 .rpc_argp = &data->args,
170 .rpc_resp = &data->res,
171 .rpc_cred = req->wb_context->cred,
172 };
84115e1c 173 struct rpc_task_setup task_setup_data = {
07737691 174 .task = &data->task,
84115e1c 175 .rpc_client = NFS_CLIENT(inode),
bdc7f021 176 .rpc_message = &msg,
84115e1c
TM
177 .callback_ops = call_ops,
178 .callback_data = data,
101070ca 179 .workqueue = nfsiod_workqueue,
84115e1c
TM
180 .flags = RPC_TASK_ASYNC | swap_flags,
181 };
1da177e4
LT
182
183 data->req = req;
84115e1c 184 data->inode = inode;
bdc7f021 185 data->cred = msg.rpc_cred;
1da177e4
LT
186
187 data->args.fh = NFS_FH(inode);
188 data->args.offset = req_offset(req) + offset;
189 data->args.pgbase = req->wb_pgbase + offset;
190 data->args.pages = data->pagevec;
191 data->args.count = count;
383ba719 192 data->args.context = get_nfs_open_context(req->wb_context);
f11ac8db 193 data->args.lock_context = req->wb_lock_context;
1da177e4
LT
194
195 data->res.fattr = &data->fattr;
196 data->res.count = count;
197 data->res.eof = 0;
0e574af1 198 nfs_fattr_init(&data->fattr);
1da177e4 199
ec06c096 200 /* Set up the initial task struct. */
bdc7f021 201 NFS_PROTO(inode)->read_setup(data, &msg);
1da177e4 202
a3f565b1 203 dprintk("NFS: %5u initiated read call (req %s/%Ld, %u bytes @ offset %Lu)\n",
1da177e4
LT
204 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);
bdc7f021 209
07737691 210 task = rpc_run_task(&task_setup_data);
dbae4c73
TM
211 if (IS_ERR(task))
212 return PTR_ERR(task);
213 rpc_put_task(task);
214 return 0;
1da177e4
LT
215}
216
217static void
218nfs_async_read_error(struct list_head *head)
219{
220 struct nfs_page *req;
221
222 while (!list_empty(head)) {
223 req = nfs_list_entry(head->next);
224 nfs_list_remove_request(req);
225 SetPageError(req->wb_page);
226 nfs_readpage_release(req);
227 }
228}
229
1da177e4
LT
230/*
231 * Generate multiple requests to fill a single page.
232 *
233 * We optimize to reduce the number of read operations on the wire. If we
234 * detect that we're reading a page, or an area of a page, that is past the
235 * end of file, we do not generate NFS read operations but just clear the
236 * parts of the page that would have come back zero from the server anyway.
237 *
238 * We rely on the cached value of i_size to make this determination; another
239 * client can fill pages on the server past our cached end-of-file, but we
240 * won't see the new data until our attribute cache is updated. This is more
241 * or less conventional NFS client behavior.
242 */
8d5658c9 243static int nfs_pagein_multi(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
1da177e4
LT
244{
245 struct nfs_page *req = nfs_list_entry(head->next);
246 struct page *page = req->wb_page;
247 struct nfs_read_data *data;
e9f7bee1
TM
248 size_t rsize = NFS_SERVER(inode)->rsize, nbytes;
249 unsigned int offset;
1da177e4 250 int requests = 0;
dbae4c73 251 int ret = 0;
1da177e4
LT
252 LIST_HEAD(list);
253
254 nfs_list_remove_request(req);
255
bcb71bba 256 nbytes = count;
e9f7bee1
TM
257 do {
258 size_t len = min(nbytes,rsize);
259
8d5658c9 260 data = nfs_readdata_alloc(1);
1da177e4
LT
261 if (!data)
262 goto out_bad;
1da177e4
LT
263 list_add(&data->pages, &list);
264 requests++;
e9f7bee1
TM
265 nbytes -= len;
266 } while(nbytes != 0);
1da177e4
LT
267 atomic_set(&req->wb_complete, requests);
268
269 ClearPageError(page);
270 offset = 0;
bcb71bba 271 nbytes = count;
1da177e4 272 do {
dbae4c73
TM
273 int ret2;
274
1da177e4
LT
275 data = list_entry(list.next, struct nfs_read_data, pages);
276 list_del_init(&data->pages);
277
278 data->pagevec[0] = page;
1da177e4 279
bcb71bba
TM
280 if (nbytes < rsize)
281 rsize = nbytes;
dbae4c73 282 ret2 = nfs_read_rpcsetup(req, data, &nfs_read_partial_ops,
bcb71bba 283 rsize, offset);
dbae4c73
TM
284 if (ret == 0)
285 ret = ret2;
bcb71bba
TM
286 offset += rsize;
287 nbytes -= rsize;
1da177e4
LT
288 } while (nbytes != 0);
289
dbae4c73 290 return ret;
1da177e4
LT
291
292out_bad:
293 while (!list_empty(&list)) {
294 data = list_entry(list.next, struct nfs_read_data, pages);
295 list_del(&data->pages);
296 nfs_readdata_free(data);
297 }
298 SetPageError(page);
299 nfs_readpage_release(req);
300 return -ENOMEM;
301}
302
8d5658c9 303static int nfs_pagein_one(struct inode *inode, struct list_head *head, unsigned int npages, size_t count, int flags)
1da177e4
LT
304{
305 struct nfs_page *req;
306 struct page **pages;
307 struct nfs_read_data *data;
dbae4c73 308 int ret = -ENOMEM;
1da177e4 309
8d5658c9 310 data = nfs_readdata_alloc(npages);
1da177e4
LT
311 if (!data)
312 goto out_bad;
313
1da177e4 314 pages = data->pagevec;
1da177e4
LT
315 while (!list_empty(head)) {
316 req = nfs_list_entry(head->next);
317 nfs_list_remove_request(req);
318 nfs_list_add_request(req, &data->pages);
319 ClearPageError(req->wb_page);
320 *pages++ = req->wb_page;
1da177e4
LT
321 }
322 req = nfs_list_entry(data->pages.next);
323
dbae4c73 324 return nfs_read_rpcsetup(req, data, &nfs_read_full_ops, count, 0);
1da177e4
LT
325out_bad:
326 nfs_async_read_error(head);
dbae4c73 327 return ret;
1da177e4
LT
328}
329
0b671301
TM
330/*
331 * This is the callback from RPC telling us whether a reply was
332 * received or some error occurred (timeout or socket shutdown).
333 */
334int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
335{
336 int status;
337
3110ff80 338 dprintk("NFS: %s: %5u, (status %d)\n", __func__, task->tk_pid,
0b671301
TM
339 task->tk_status);
340
341 status = NFS_PROTO(data->inode)->read_done(task, data);
342 if (status != 0)
343 return status;
344
345 nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count);
346
347 if (task->tk_status == -ESTALE) {
3a10c30a 348 set_bit(NFS_INO_STALE, &NFS_I(data->inode)->flags);
0b671301
TM
349 nfs_mark_for_revalidate(data->inode);
350 }
0b671301
TM
351 return 0;
352}
353
fdd1e74c 354static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
0b671301
TM
355{
356 struct nfs_readargs *argp = &data->args;
357 struct nfs_readres *resp = &data->res;
358
359 if (resp->eof || resp->count == argp->count)
d61e612a 360 return;
0b671301
TM
361
362 /* This is a short read! */
363 nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
364 /* Has the server at least made some progress? */
365 if (resp->count == 0)
d61e612a 366 return;
0b671301
TM
367
368 /* Yes, so retry the read at the end of the data */
369 argp->offset += resp->count;
370 argp->pgbase += resp->count;
371 argp->count -= resp->count;
0110ee15 372 nfs_restart_rpc(task, NFS_SERVER(data->inode)->nfs_client);
0b671301
TM
373}
374
1da177e4
LT
375/*
376 * Handle a read reply that fills part of a page.
377 */
ec06c096 378static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
1da177e4 379{
ec06c096 380 struct nfs_read_data *data = calldata;
1da177e4 381
ec06c096
TM
382 if (nfs_readpage_result(task, data) != 0)
383 return;
fdd1e74c
TM
384 if (task->tk_status < 0)
385 return;
0b671301 386
fdd1e74c
TM
387 nfs_readpage_truncate_uninitialised_page(data);
388 nfs_readpage_retry(task, data);
389}
390
391static void nfs_readpage_release_partial(void *calldata)
392{
393 struct nfs_read_data *data = calldata;
394 struct nfs_page *req = data->req;
395 struct page *page = req->wb_page;
396 int status = data->task.tk_status;
397
398 if (status < 0)
0b671301 399 SetPageError(page);
fdd1e74c 400
1da177e4
LT
401 if (atomic_dec_and_test(&req->wb_complete)) {
402 if (!PageError(page))
403 SetPageUptodate(page);
404 nfs_readpage_release(req);
405 }
fdd1e74c 406 nfs_readdata_release(calldata);
1da177e4
LT
407}
408
f11c88af
AA
409#if defined(CONFIG_NFS_V4_1)
410void nfs_read_prepare(struct rpc_task *task, void *calldata)
411{
412 struct nfs_read_data *data = calldata;
413
035168ab 414 if (nfs4_setup_sequence(NFS_SERVER(data->inode),
f11c88af
AA
415 &data->args.seq_args, &data->res.seq_res,
416 0, task))
417 return;
418 rpc_call_start(task);
419}
420#endif /* CONFIG_NFS_V4_1 */
421
ec06c096 422static const struct rpc_call_ops nfs_read_partial_ops = {
f11c88af
AA
423#if defined(CONFIG_NFS_V4_1)
424 .rpc_call_prepare = nfs_read_prepare,
425#endif /* CONFIG_NFS_V4_1 */
ec06c096 426 .rpc_call_done = nfs_readpage_result_partial,
fdd1e74c 427 .rpc_release = nfs_readpage_release_partial,
ec06c096
TM
428};
429
1de3fc12
TM
430static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
431{
432 unsigned int count = data->res.count;
433 unsigned int base = data->args.pgbase;
434 struct page **pages;
435
79558f36
TM
436 if (data->res.eof)
437 count = data->args.count;
1de3fc12
TM
438 if (unlikely(count == 0))
439 return;
440 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
441 base &= ~PAGE_CACHE_MASK;
442 count += base;
443 for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++)
444 SetPageUptodate(*pages);
0b671301
TM
445 if (count == 0)
446 return;
447 /* Was this a short read? */
448 if (data->res.eof || data->res.count == data->args.count)
1de3fc12
TM
449 SetPageUptodate(*pages);
450}
451
1da177e4
LT
452/*
453 * This is the callback from RPC telling us whether a reply was
454 * received or some error occurred (timeout or socket shutdown).
455 */
ec06c096 456static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
1da177e4 457{
ec06c096 458 struct nfs_read_data *data = calldata;
1da177e4 459
0b671301
TM
460 if (nfs_readpage_result(task, data) != 0)
461 return;
fdd1e74c
TM
462 if (task->tk_status < 0)
463 return;
1de3fc12 464 /*
0b671301 465 * Note: nfs_readpage_retry may change the values of
1de3fc12 466 * data->args. In the multi-page case, we therefore need
0b671301
TM
467 * to ensure that we call nfs_readpage_set_pages_uptodate()
468 * first.
1de3fc12 469 */
fdd1e74c
TM
470 nfs_readpage_truncate_uninitialised_page(data);
471 nfs_readpage_set_pages_uptodate(data);
472 nfs_readpage_retry(task, data);
473}
474
475static void nfs_readpage_release_full(void *calldata)
476{
477 struct nfs_read_data *data = calldata;
478
1da177e4
LT
479 while (!list_empty(&data->pages)) {
480 struct nfs_page *req = nfs_list_entry(data->pages.next);
1da177e4 481
1de3fc12 482 nfs_list_remove_request(req);
1da177e4
LT
483 nfs_readpage_release(req);
484 }
fdd1e74c 485 nfs_readdata_release(calldata);
1da177e4
LT
486}
487
ec06c096 488static const struct rpc_call_ops nfs_read_full_ops = {
f11c88af
AA
489#if defined(CONFIG_NFS_V4_1)
490 .rpc_call_prepare = nfs_read_prepare,
491#endif /* CONFIG_NFS_V4_1 */
ec06c096 492 .rpc_call_done = nfs_readpage_result_full,
fdd1e74c 493 .rpc_release = nfs_readpage_release_full,
ec06c096
TM
494};
495
1da177e4
LT
496/*
497 * Read a page over NFS.
498 * We read the page synchronously in the following case:
499 * - The error flag is set for this page. This happens only when a
500 * previous async read operation failed.
501 */
502int nfs_readpage(struct file *file, struct page *page)
503{
504 struct nfs_open_context *ctx;
505 struct inode *inode = page->mapping->host;
506 int error;
507
508 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
509 page, PAGE_CACHE_SIZE, page->index);
91d5b470
CL
510 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
511 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
512
1da177e4
LT
513 /*
514 * Try to flush any pending writes to the file..
515 *
516 * NOTE! Because we own the page lock, there cannot
517 * be any new pending writes generated at this point
518 * for this page (other pages can be written to).
519 */
520 error = nfs_wb_page(inode, page);
521 if (error)
de05a0cc
TM
522 goto out_unlock;
523 if (PageUptodate(page))
524 goto out_unlock;
1da177e4 525
5f004cf2
TM
526 error = -ESTALE;
527 if (NFS_STALE(inode))
de05a0cc 528 goto out_unlock;
5f004cf2 529
1da177e4 530 if (file == NULL) {
cf1308ff 531 error = -EBADF;
d530838b 532 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
1da177e4 533 if (ctx == NULL)
de05a0cc 534 goto out_unlock;
1da177e4 535 } else
cd3758e3 536 ctx = get_nfs_open_context(nfs_file_open_context(file));
1da177e4 537
9a9fc1c0
DH
538 if (!IS_SYNC(inode)) {
539 error = nfs_readpage_from_fscache(ctx, inode, page);
540 if (error == 0)
541 goto out;
542 }
543
8e0969f0
TM
544 error = nfs_readpage_async(ctx, inode, page);
545
9a9fc1c0 546out:
1da177e4
LT
547 put_nfs_open_context(ctx);
548 return error;
de05a0cc 549out_unlock:
1da177e4
LT
550 unlock_page(page);
551 return error;
552}
553
554struct nfs_readdesc {
8b09bee3 555 struct nfs_pageio_descriptor *pgio;
1da177e4
LT
556 struct nfs_open_context *ctx;
557};
558
559static int
560readpage_async_filler(void *data, struct page *page)
561{
562 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
563 struct inode *inode = page->mapping->host;
564 struct nfs_page *new;
565 unsigned int len;
de05a0cc
TM
566 int error;
567
49a70f27 568 len = nfs_page_length(page);
1da177e4
LT
569 if (len == 0)
570 return nfs_return_empty_page(page);
de05a0cc 571
1da177e4 572 new = nfs_create_request(desc->ctx, inode, page, 0, len);
de05a0cc
TM
573 if (IS_ERR(new))
574 goto out_error;
575
1da177e4 576 if (len < PAGE_CACHE_SIZE)
eebd2aa3 577 zero_user_segment(page, len, PAGE_CACHE_SIZE);
f8512ad0
FI
578 if (!nfs_pageio_add_request(desc->pgio, new)) {
579 error = desc->pgio->pg_error;
580 goto out_unlock;
581 }
1da177e4 582 return 0;
de05a0cc
TM
583out_error:
584 error = PTR_ERR(new);
585 SetPageError(page);
586out_unlock:
587 unlock_page(page);
588 return error;
1da177e4
LT
589}
590
591int nfs_readpages(struct file *filp, struct address_space *mapping,
592 struct list_head *pages, unsigned nr_pages)
593{
8b09bee3 594 struct nfs_pageio_descriptor pgio;
1da177e4 595 struct nfs_readdesc desc = {
8b09bee3 596 .pgio = &pgio,
1da177e4
LT
597 };
598 struct inode *inode = mapping->host;
599 struct nfs_server *server = NFS_SERVER(inode);
8b09bee3
TM
600 size_t rsize = server->rsize;
601 unsigned long npages;
5f004cf2 602 int ret = -ESTALE;
1da177e4
LT
603
604 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
605 inode->i_sb->s_id,
606 (long long)NFS_FILEID(inode),
607 nr_pages);
91d5b470 608 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
1da177e4 609
5f004cf2
TM
610 if (NFS_STALE(inode))
611 goto out;
612
1da177e4 613 if (filp == NULL) {
d530838b 614 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
1da177e4
LT
615 if (desc.ctx == NULL)
616 return -EBADF;
617 } else
cd3758e3 618 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
9a9fc1c0
DH
619
620 /* attempt to read as many of the pages as possible from the cache
621 * - this returns -ENOBUFS immediately if the cookie is negative
622 */
623 ret = nfs_readpages_from_fscache(desc.ctx, inode, mapping,
624 pages, &nr_pages);
625 if (ret == 0)
626 goto read_complete; /* all pages were read */
627
e5e94017 628 pnfs_update_layout(inode, desc.ctx, IOMODE_READ);
8b09bee3
TM
629 if (rsize < PAGE_CACHE_SIZE)
630 nfs_pageio_init(&pgio, inode, nfs_pagein_multi, rsize, 0);
631 else
632 nfs_pageio_init(&pgio, inode, nfs_pagein_one, rsize, 0);
633
1da177e4 634 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
8b09bee3
TM
635
636 nfs_pageio_complete(&pgio);
637 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
638 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
9a9fc1c0 639read_complete:
1da177e4 640 put_nfs_open_context(desc.ctx);
5f004cf2 641out:
1da177e4
LT
642 return ret;
643}
644
f7b422b1 645int __init nfs_init_readpagecache(void)
1da177e4
LT
646{
647 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
648 sizeof(struct nfs_read_data),
649 0, SLAB_HWCACHE_ALIGN,
20c2df83 650 NULL);
1da177e4
LT
651 if (nfs_rdata_cachep == NULL)
652 return -ENOMEM;
653
93d2341c
MD
654 nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ,
655 nfs_rdata_cachep);
1da177e4
LT
656 if (nfs_rdata_mempool == NULL)
657 return -ENOMEM;
658
659 return 0;
660}
661
266bee88 662void nfs_destroy_readpagecache(void)
1da177e4
LT
663{
664 mempool_destroy(nfs_rdata_mempool);
1a1d92c1 665 kmem_cache_destroy(nfs_rdata_cachep);
1da177e4 666}