aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/read.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2008-04-15 16:33:58 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-04-19 16:53:01 -0400
commitfdd1e74c89fe39259a29c494209abad63ff76f82 (patch)
tree7ec3708b7b7badeb20f705cf865afbb9c63b5406 /fs/nfs/read.c
parent73e3302f60c0e11a0db0b34b903f591139c4f937 (diff)
NFS: Ensure that the read code cleans up properly when rpc_run_task() fails
In the case of readpage() we need to ensure that the pages get unlocked, and that the error is flagged. In the case of O_DIRECT, we need to ensure that the pages are all released. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/read.c')
-rw-r--r--fs/nfs/read.c53
1 files changed, 33 insertions, 20 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c
index d333f5fedca1..6f9208a549a0 100644
--- a/fs/nfs/read.c
+++ b/fs/nfs/read.c
@@ -338,26 +338,25 @@ int nfs_readpage_result(struct rpc_task *task, struct nfs_read_data *data)
338 return 0; 338 return 0;
339} 339}
340 340
341static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data) 341static void nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
342{ 342{
343 struct nfs_readargs *argp = &data->args; 343 struct nfs_readargs *argp = &data->args;
344 struct nfs_readres *resp = &data->res; 344 struct nfs_readres *resp = &data->res;
345 345
346 if (resp->eof || resp->count == argp->count) 346 if (resp->eof || resp->count == argp->count)
347 return 0; 347 return;
348 348
349 /* This is a short read! */ 349 /* This is a short read! */
350 nfs_inc_stats(data->inode, NFSIOS_SHORTREAD); 350 nfs_inc_stats(data->inode, NFSIOS_SHORTREAD);
351 /* Has the server at least made some progress? */ 351 /* Has the server at least made some progress? */
352 if (resp->count == 0) 352 if (resp->count == 0)
353 return 0; 353 return;
354 354
355 /* Yes, so retry the read at the end of the data */ 355 /* Yes, so retry the read at the end of the data */
356 argp->offset += resp->count; 356 argp->offset += resp->count;
357 argp->pgbase += resp->count; 357 argp->pgbase += resp->count;
358 argp->count -= resp->count; 358 argp->count -= resp->count;
359 rpc_restart_call(task); 359 rpc_restart_call(task);
360 return -EAGAIN;
361} 360}
362 361
363/* 362/*
@@ -366,29 +365,37 @@ static int nfs_readpage_retry(struct rpc_task *task, struct nfs_read_data *data)
366static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata) 365static void nfs_readpage_result_partial(struct rpc_task *task, void *calldata)
367{ 366{
368 struct nfs_read_data *data = calldata; 367 struct nfs_read_data *data = calldata;
369 struct nfs_page *req = data->req;
370 struct page *page = req->wb_page;
371 368
372 if (nfs_readpage_result(task, data) != 0) 369 if (nfs_readpage_result(task, data) != 0)
373 return; 370 return;
371 if (task->tk_status < 0)
372 return;
374 373
375 if (likely(task->tk_status >= 0)) { 374 nfs_readpage_truncate_uninitialised_page(data);
376 nfs_readpage_truncate_uninitialised_page(data); 375 nfs_readpage_retry(task, data);
377 if (nfs_readpage_retry(task, data) != 0) 376}
378 return; 377
379 } 378static void nfs_readpage_release_partial(void *calldata)
380 if (unlikely(task->tk_status < 0)) 379{
380 struct nfs_read_data *data = calldata;
381 struct nfs_page *req = data->req;
382 struct page *page = req->wb_page;
383 int status = data->task.tk_status;
384
385 if (status < 0)
381 SetPageError(page); 386 SetPageError(page);
387
382 if (atomic_dec_and_test(&req->wb_complete)) { 388 if (atomic_dec_and_test(&req->wb_complete)) {
383 if (!PageError(page)) 389 if (!PageError(page))
384 SetPageUptodate(page); 390 SetPageUptodate(page);
385 nfs_readpage_release(req); 391 nfs_readpage_release(req);
386 } 392 }
393 nfs_readdata_release(calldata);
387} 394}
388 395
389static const struct rpc_call_ops nfs_read_partial_ops = { 396static const struct rpc_call_ops nfs_read_partial_ops = {
390 .rpc_call_done = nfs_readpage_result_partial, 397 .rpc_call_done = nfs_readpage_result_partial,
391 .rpc_release = nfs_readdata_release, 398 .rpc_release = nfs_readpage_release_partial,
392}; 399};
393 400
394static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data) 401static void nfs_readpage_set_pages_uptodate(struct nfs_read_data *data)
@@ -423,29 +430,35 @@ static void nfs_readpage_result_full(struct rpc_task *task, void *calldata)
423 430
424 if (nfs_readpage_result(task, data) != 0) 431 if (nfs_readpage_result(task, data) != 0)
425 return; 432 return;
433 if (task->tk_status < 0)
434 return;
426 /* 435 /*
427 * Note: nfs_readpage_retry may change the values of 436 * Note: nfs_readpage_retry may change the values of
428 * data->args. In the multi-page case, we therefore need 437 * data->args. In the multi-page case, we therefore need
429 * to ensure that we call nfs_readpage_set_pages_uptodate() 438 * to ensure that we call nfs_readpage_set_pages_uptodate()
430 * first. 439 * first.
431 */ 440 */
432 if (likely(task->tk_status >= 0)) { 441 nfs_readpage_truncate_uninitialised_page(data);
433 nfs_readpage_truncate_uninitialised_page(data); 442 nfs_readpage_set_pages_uptodate(data);
434 nfs_readpage_set_pages_uptodate(data); 443 nfs_readpage_retry(task, data);
435 if (nfs_readpage_retry(task, data) != 0) 444}
436 return; 445
437 } 446static void nfs_readpage_release_full(void *calldata)
447{
448 struct nfs_read_data *data = calldata;
449
438 while (!list_empty(&data->pages)) { 450 while (!list_empty(&data->pages)) {
439 struct nfs_page *req = nfs_list_entry(data->pages.next); 451 struct nfs_page *req = nfs_list_entry(data->pages.next);
440 452
441 nfs_list_remove_request(req); 453 nfs_list_remove_request(req);
442 nfs_readpage_release(req); 454 nfs_readpage_release(req);
443 } 455 }
456 nfs_readdata_release(calldata);
444} 457}
445 458
446static const struct rpc_call_ops nfs_read_full_ops = { 459static const struct rpc_call_ops nfs_read_full_ops = {
447 .rpc_call_done = nfs_readpage_result_full, 460 .rpc_call_done = nfs_readpage_result_full,
448 .rpc_release = nfs_readdata_release, 461 .rpc_release = nfs_readpage_release_full,
449}; 462};
450 463
451/* 464/*