blob: e9dbdc8eafe6bedf7ff9432db9b284ccb6226489 [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{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 nfs_readdata_free(data);
77}
78
79static
Linus Torvalds1da177e2005-04-16 15:20:36 -070080int nfs_return_empty_page(struct page *page)
81{
Nate Diller60945cb2007-05-10 22:55:08 -070082 zero_user_page(page, 0, PAGE_CACHE_SIZE, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 SetPageUptodate(page);
84 unlock_page(page);
85 return 0;
86}
87
Trond Myklebust1de3fc12006-05-25 01:40:44 -040088static void nfs_readpage_truncate_uninitialised_page(struct nfs_read_data *data)
89{
90 unsigned int remainder = data->args.count - data->res.count;
91 unsigned int base = data->args.pgbase + data->res.count;
92 unsigned int pglen;
93 struct page **pages;
94
95 if (data->res.eof == 0 || remainder == 0)
96 return;
97 /*
98 * Note: "remainder" can never be negative, since we check for
99 * this in the XDR code.
100 */
101 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
102 base &= ~PAGE_CACHE_MASK;
103 pglen = PAGE_CACHE_SIZE - base;
Trond Myklebust79558f32006-08-22 13:44:32 -0400104 for (;;) {
105 if (remainder <= pglen) {
Nate Diller60945cb2007-05-10 22:55:08 -0700106 zero_user_page(*pages, base, remainder, KM_USER0);
Trond Myklebust79558f32006-08-22 13:44:32 -0400107 break;
108 }
Nate Diller60945cb2007-05-10 22:55:08 -0700109 zero_user_page(*pages, base, pglen, KM_USER0);
Trond Myklebust79558f32006-08-22 13:44:32 -0400110 pages++;
111 remainder -= pglen;
112 pglen = PAGE_CACHE_SIZE;
113 base = 0;
114 }
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static int nfs_readpage_async(struct nfs_open_context *ctx, struct inode *inode,
118 struct page *page)
119{
120 LIST_HEAD(one_request);
121 struct nfs_page *new;
122 unsigned int len;
123
Trond Myklebust49a70f22006-12-05 00:35:38 -0500124 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (len == 0)
126 return nfs_return_empty_page(page);
127 new = nfs_create_request(ctx, inode, page, 0, len);
128 if (IS_ERR(new)) {
129 unlock_page(page);
130 return PTR_ERR(new);
131 }
132 if (len < PAGE_CACHE_SIZE)
Nate Diller60945cb2007-05-10 22:55:08 -0700133 zero_user_page(page, len, PAGE_CACHE_SIZE - len, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 nfs_list_add_request(new, &one_request);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400136 if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE)
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400137 nfs_pagein_multi(inode, &one_request, 1, len, 0);
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400138 else
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400139 nfs_pagein_one(inode, &one_request, 1, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
142
143static void nfs_readpage_release(struct nfs_page *req)
144{
145 unlock_page(req->wb_page);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 dprintk("NFS: read done (%s/%Ld %d@%Ld)\n",
Trond Myklebust88be9f92007-06-05 10:42:27 -0400148 req->wb_context->path.dentry->d_inode->i_sb->s_id,
149 (long long)NFS_FILEID(req->wb_context->path.dentry->d_inode),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 req->wb_bytes,
151 (long long)req_offset(req));
Nick Wilson10d2c462005-09-22 21:44:28 -0700152 nfs_clear_request(req);
153 nfs_release_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400156static void nfs_execute_read(struct nfs_read_data *data)
157{
158 struct rpc_clnt *clnt = NFS_CLIENT(data->inode);
159 sigset_t oldset;
160
161 rpc_clnt_sigmask(clnt, &oldset);
162 rpc_execute(&data->task);
163 rpc_clnt_sigunmask(clnt, &oldset);
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * Set up the NFS read request struct
168 */
169static void nfs_read_rpcsetup(struct nfs_page *req, struct nfs_read_data *data,
Trond Myklebustec06c092006-03-20 13:44:27 -0500170 const struct rpc_call_ops *call_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 unsigned int count, unsigned int offset)
172{
Trond Myklebust84115e12007-07-14 15:39:59 -0400173 struct inode *inode = req->wb_context->path.dentry->d_inode;
174 int swap_flags = IS_SWAPFILE(inode) ? NFS_RPC_SWAPFLAGS : 0;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400175 struct rpc_message msg = {
176 .rpc_argp = &data->args,
177 .rpc_resp = &data->res,
178 .rpc_cred = req->wb_context->cred,
179 };
Trond Myklebust84115e12007-07-14 15:39:59 -0400180 struct rpc_task_setup task_setup_data = {
181 .rpc_client = NFS_CLIENT(inode),
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400182 .rpc_message = &msg,
Trond Myklebust84115e12007-07-14 15:39:59 -0400183 .callback_ops = call_ops,
184 .callback_data = data,
185 .flags = RPC_TASK_ASYNC | swap_flags,
186 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 data->req = req;
Trond Myklebust84115e12007-07-14 15:39:59 -0400189 data->inode = inode;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400190 data->cred = msg.rpc_cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 data->args.fh = NFS_FH(inode);
193 data->args.offset = req_offset(req) + offset;
194 data->args.pgbase = req->wb_pgbase + offset;
195 data->args.pages = data->pagevec;
196 data->args.count = count;
197 data->args.context = req->wb_context;
198
199 data->res.fattr = &data->fattr;
200 data->res.count = count;
201 data->res.eof = 0;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400202 nfs_fattr_init(&data->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Trond Myklebustec06c092006-03-20 13:44:27 -0500204 /* Set up the initial task struct. */
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400205 NFS_PROTO(inode)->read_setup(data, &msg);
Trond Myklebust84115e12007-07-14 15:39:59 -0400206 rpc_init_task(&data->task, &task_setup_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Chuck Levera3f565b2007-01-31 12:14:01 -0500208 dprintk("NFS: %5u initiated read call (req %s/%Ld, %u bytes @ offset %Lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 data->task.tk_pid,
210 inode->i_sb->s_id,
211 (long long)NFS_FILEID(inode),
212 count,
213 (unsigned long long)data->args.offset);
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400214
215 nfs_execute_read(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218static void
219nfs_async_read_error(struct list_head *head)
220{
221 struct nfs_page *req;
222
223 while (!list_empty(head)) {
224 req = nfs_list_entry(head->next);
225 nfs_list_remove_request(req);
226 SetPageError(req->wb_page);
227 nfs_readpage_release(req);
228 }
229}
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Generate multiple requests to fill a single page.
233 *
234 * We optimize to reduce the number of read operations on the wire. If we
235 * detect that we're reading a page, or an area of a page, that is past the
236 * end of file, we do not generate NFS read operations but just clear the
237 * parts of the page that would have come back zero from the server anyway.
238 *
239 * We rely on the cached value of i_size to make this determination; another
240 * client can fill pages on the server past our cached end-of-file, but we
241 * won't see the new data until our attribute cache is updated. This is more
242 * or less conventional NFS client behavior.
243 */
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400244static 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 -0700245{
246 struct nfs_page *req = nfs_list_entry(head->next);
247 struct page *page = req->wb_page;
248 struct nfs_read_data *data;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700249 size_t rsize = NFS_SERVER(inode)->rsize, nbytes;
250 unsigned int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int requests = 0;
252 LIST_HEAD(list);
253
254 nfs_list_remove_request(req);
255
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400256 nbytes = count;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700257 do {
258 size_t len = min(nbytes,rsize);
259
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400260 data = nfs_readdata_alloc(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!data)
262 goto out_bad;
263 INIT_LIST_HEAD(&data->pages);
264 list_add(&data->pages, &list);
265 requests++;
Trond Myklebuste9f7bee2006-09-08 09:48:54 -0700266 nbytes -= len;
267 } while(nbytes != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 atomic_set(&req->wb_complete, requests);
269
270 ClearPageError(page);
271 offset = 0;
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400272 nbytes = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 do {
274 data = list_entry(list.next, struct nfs_read_data, pages);
275 list_del_init(&data->pages);
276
277 data->pagevec[0] = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Trond Myklebustbcb71bb2007-04-02 18:48:28 -0400279 if (nbytes < rsize)
280 rsize = nbytes;
281 nfs_read_rpcsetup(req, data, &nfs_read_partial_ops,
282 rsize, offset);
283 offset += rsize;
284 nbytes -= rsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 } while (nbytes != 0);
286
287 return 0;
288
289out_bad:
290 while (!list_empty(&list)) {
291 data = list_entry(list.next, struct nfs_read_data, pages);
292 list_del(&data->pages);
293 nfs_readdata_free(data);
294 }
295 SetPageError(page);
296 nfs_readpage_release(req);
297 return -ENOMEM;
298}
299
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400300static 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 -0700301{
302 struct nfs_page *req;
303 struct page **pages;
304 struct nfs_read_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400306 data = nfs_readdata_alloc(npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!data)
308 goto out_bad;
309
310 INIT_LIST_HEAD(&data->pages);
311 pages = data->pagevec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 while (!list_empty(head)) {
313 req = nfs_list_entry(head->next);
314 nfs_list_remove_request(req);
315 nfs_list_add_request(req, &data->pages);
316 ClearPageError(req->wb_page);
317 *pages++ = req->wb_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 req = nfs_list_entry(data->pages.next);
320
Trond Myklebustec06c092006-03-20 13:44:27 -0500321 nfs_read_rpcsetup(req, data, &nfs_read_full_ops, count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 0;
323out_bad:
324 nfs_async_read_error(head);
325 return -ENOMEM;
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/*
Trond Myklebust0b671302006-11-14 16:12:23 -0500329 * This is the callback from RPC telling us whether a reply was
330 * received or some error occurred (timeout or socket shutdown).
331 */
332int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
333{
334 int status;
335
Chuck Levera3f565b2007-01-31 12:14:01 -0500336 dprintk("NFS: %s: %5u, (status %d)\n", __FUNCTION__, task->tk_pid,
Trond Myklebust0b671302006-11-14 16:12:23 -0500337 task->tk_status);
338
339 status = NFS_PROTO(data->inode)->read_done(task, data);
340 if (status != 0)
341 return status;
342
343 nfs_add_stats(data->inode, NFSIOS_SERVERREADBYTES, data->res.count);
344
345 if (task->tk_status == -ESTALE) {
346 set_bit(NFS_INO_STALE, &NFS_FLAGS(data->inode));
347 nfs_mark_for_revalidate(data->inode);
348 }
Trond Myklebust0b671302006-11-14 16:12:23 -0500349 return 0;
350}
351
352static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
353{
354 struct nfs_readargs *argp = &data->args;
355 struct nfs_readres *resp = &data->res;
356
357 if (resp->eof || resp->count == argp->count)
358 return 0;
359
360 /* This is a short read! */
361 nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
362 /* Has the server at least made some progress? */
363 if (resp->count == 0)
364 return 0;
365
366 /* Yes, so retry the read at the end of the data */
367 argp->offset += resp->count;
368 argp->pgbase += resp->count;
369 argp->count -= resp->count;
370 rpc_restart_call(task);
371 return -EAGAIN;
372}
373
374/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Handle a read reply that fills part of a page.
376 */
Trond Myklebustec06c092006-03-20 13:44:27 -0500377static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Trond Myklebustec06c092006-03-20 13:44:27 -0500379 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct nfs_page *req = data->req;
381 struct page *page = req->wb_page;
382
Trond Myklebustec06c092006-03-20 13:44:27 -0500383 if (nfs_readpage_result(task, data) != 0)
384 return;
Trond Myklebust0b671302006-11-14 16:12:23 -0500385
386 if (likely(task->tk_status >= 0)) {
387 nfs_readpage_truncate_uninitialised_page(data);
388 if (nfs_readpage_retry(task, data) != 0)
389 return;
390 }
391 if (unlikely(task->tk_status < 0))
392 SetPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (atomic_dec_and_test(&req->wb_complete)) {
394 if (!PageError(page))
395 SetPageUptodate(page);
396 nfs_readpage_release(req);
397 }
398}
399
Trond Myklebustec06c092006-03-20 13:44:27 -0500400static const struct rpc_call_ops nfs_read_partial_ops = {
401 .rpc_call_done = nfs_readpage_result_partial,
402 .rpc_release = nfs_readdata_release,
403};
404
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400405static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
406{
407 unsigned int count = data->res.count;
408 unsigned int base = data->args.pgbase;
409 struct page **pages;
410
Trond Myklebust79558f32006-08-22 13:44:32 -0400411 if (data->res.eof)
412 count = data->args.count;
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400413 if (unlikely(count == 0))
414 return;
415 pages = &data->args.pages[base >> PAGE_CACHE_SHIFT];
416 base &= ~PAGE_CACHE_MASK;
417 count += base;
418 for (;count >= PAGE_CACHE_SIZE; count -= PAGE_CACHE_SIZE, pages++)
419 SetPageUptodate(*pages);
Trond Myklebust0b671302006-11-14 16:12:23 -0500420 if (count == 0)
421 return;
422 /* Was this a short read? */
423 if (data->res.eof || data->res.count == data->args.count)
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400424 SetPageUptodate(*pages);
425}
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/*
428 * This is the callback from RPC telling us whether a reply was
429 * received or some error occurred (timeout or socket shutdown).
430 */
Trond Myklebustec06c092006-03-20 13:44:27 -0500431static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Trond Myklebustec06c092006-03-20 13:44:27 -0500433 struct nfs_read_data *data = calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Trond Myklebust0b671302006-11-14 16:12:23 -0500435 if (nfs_readpage_result(task, data) != 0)
436 return;
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400437 /*
Trond Myklebust0b671302006-11-14 16:12:23 -0500438 * Note: nfs_readpage_retry may change the values of
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400439 * data->args. In the multi-page case, we therefore need
Trond Myklebust0b671302006-11-14 16:12:23 -0500440 * to ensure that we call nfs_readpage_set_pages_uptodate()
441 * first.
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400442 */
443 if (likely(task->tk_status >= 0)) {
444 nfs_readpage_truncate_uninitialised_page(data);
445 nfs_readpage_set_pages_uptodate(data);
Trond Myklebust0b671302006-11-14 16:12:23 -0500446 if (nfs_readpage_retry(task, data) != 0)
447 return;
448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 while (!list_empty(&data->pages)) {
450 struct nfs_page *req = nfs_list_entry(data->pages.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Trond Myklebust1de3fc12006-05-25 01:40:44 -0400452 nfs_list_remove_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 nfs_readpage_release(req);
454 }
455}
456
Trond Myklebustec06c092006-03-20 13:44:27 -0500457static const struct rpc_call_ops nfs_read_full_ops = {
458 .rpc_call_done = nfs_readpage_result_full,
459 .rpc_release = nfs_readdata_release,
460};
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * Read a page over NFS.
464 * We read the page synchronously in the following case:
465 * - The error flag is set for this page. This happens only when a
466 * previous async read operation failed.
467 */
468int nfs_readpage(struct file *file, struct page *page)
469{
470 struct nfs_open_context *ctx;
471 struct inode *inode = page->mapping->host;
472 int error;
473
474 dprintk("NFS: nfs_readpage (%p %ld@%lu)\n",
475 page, PAGE_CACHE_SIZE, page->index);
Chuck Lever91d5b472006-03-20 13:44:14 -0500476 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
477 nfs_add_stats(inode, NFSIOS_READPAGES, 1);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /*
480 * Try to flush any pending writes to the file..
481 *
482 * NOTE! Because we own the page lock, there cannot
483 * be any new pending writes generated at this point
484 * for this page (other pages can be written to).
485 */
486 error = nfs_wb_page(inode, page);
487 if (error)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400488 goto out_unlock;
489 if (PageUptodate(page))
490 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400492 error = -ESTALE;
493 if (NFS_STALE(inode))
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400494 goto out_unlock;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (file == NULL) {
Trond Myklebustcf1308f2006-11-19 16:44:52 -0500497 error = -EBADF;
Trond Myklebustd5308382005-11-04 15:33:38 -0500498 ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (ctx == NULL)
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400500 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400502 ctx = get_nfs_open_context(nfs_file_open_context(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Trond Myklebust8e0969f2006-12-13 15:23:44 -0500504 error = nfs_readpage_async(ctx, inode, page);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 put_nfs_open_context(ctx);
507 return error;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400508out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 unlock_page(page);
510 return error;
511}
512
513struct nfs_readdesc {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400514 struct nfs_pageio_descriptor *pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct nfs_open_context *ctx;
516};
517
518static int
519readpage_async_filler(void *data, struct page *page)
520{
521 struct nfs_readdesc *desc = (struct nfs_readdesc *)data;
522 struct inode *inode = page->mapping->host;
523 struct nfs_page *new;
524 unsigned int len;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400525 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400527 error = nfs_wb_page(inode, page);
528 if (error)
529 goto out_unlock;
530 if (PageUptodate(page))
531 goto out_unlock;
532
Trond Myklebust49a70f22006-12-05 00:35:38 -0500533 len = nfs_page_length(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (len == 0)
535 return nfs_return_empty_page(page);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 new = nfs_create_request(desc->ctx, inode, page, 0, len);
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400538 if (IS_ERR(new))
539 goto out_error;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (len < PAGE_CACHE_SIZE)
Nate Diller60945cb2007-05-10 22:55:08 -0700542 zero_user_page(page, len, PAGE_CACHE_SIZE - len, KM_USER0);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400543 nfs_pageio_add_request(desc->pgio, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return 0;
Trond Myklebustde05a0c2007-05-20 13:05:05 -0400545out_error:
546 error = PTR_ERR(new);
547 SetPageError(page);
548out_unlock:
549 unlock_page(page);
550 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553int nfs_readpages(struct file *filp, struct address_space *mapping,
554 struct list_head *pages, unsigned nr_pages)
555{
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400556 struct nfs_pageio_descriptor pgio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct nfs_readdesc desc = {
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400558 .pgio = &pgio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 };
560 struct inode *inode = mapping->host;
561 struct nfs_server *server = NFS_SERVER(inode);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400562 size_t rsize = server->rsize;
563 unsigned long npages;
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400564 int ret = -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 dprintk("NFS: nfs_readpages (%s/%Ld %d)\n",
567 inode->i_sb->s_id,
568 (long long)NFS_FILEID(inode),
569 nr_pages);
Chuck Lever91d5b472006-03-20 13:44:14 -0500570 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400572 if (NFS_STALE(inode))
573 goto out;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (filp == NULL) {
Trond Myklebustd5308382005-11-04 15:33:38 -0500576 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (desc.ctx == NULL)
578 return -EBADF;
579 } else
Trond Myklebustcd3758e2007-08-10 17:44:32 -0400580 desc.ctx = get_nfs_open_context(nfs_file_open_context(filp));
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400581 if (rsize < PAGE_CACHE_SIZE)
582 nfs_pageio_init(&pgio, inode, nfs_pagein_multi, rsize, 0);
583 else
584 nfs_pageio_init(&pgio, inode, nfs_pagein_one, rsize, 0);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 ret = read_cache_pages(mapping, pages, readpage_async_filler, &desc);
Trond Myklebust8b09bee2007-04-02 18:48:28 -0400587
588 nfs_pageio_complete(&pgio);
589 npages = (pgio.pg_bytes_written + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
590 nfs_add_stats(inode, NFSIOS_READPAGES, npages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 put_nfs_open_context(desc.ctx);
Trond Myklebust5f004cf2006-09-14 14:03:14 -0400592out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return ret;
594}
595
David Howellsf7b422b2006-06-09 09:34:33 -0400596int __init nfs_init_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
599 sizeof(struct nfs_read_data),
600 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900601 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (nfs_rdata_cachep == NULL)
603 return -ENOMEM;
604
Matthew Dobson93d23412006-03-26 01:37:50 -0800605 nfs_rdata_mempool = mempool_create_slab_pool(MIN_POOL_READ,
606 nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (nfs_rdata_mempool == NULL)
608 return -ENOMEM;
609
610 return 0;
611}
612
David Brownell266bee82006-06-27 12:59:15 -0700613void nfs_destroy_readpagecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 mempool_destroy(nfs_rdata_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700616 kmem_cache_destroy(nfs_rdata_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}