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