diff options
author | Bryan Schumaker <bjschuma@netapp.com> | 2012-03-19 14:54:40 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-03-21 09:31:45 -0400 |
commit | ea7c330362257c072791aeaf03bae2cebf9fb984 (patch) | |
tree | 5633ea3278a8ad9b81891bd1fd149af76ad3fe7d /fs/nfs/read.c | |
parent | c6cb80d00be42f30716ec817b963bcec094433b5 (diff) |
NFS: Remove nfs4_setup_sequence from generic read code
This is an NFS v4 specific operation, so it belongs in the NFS v4 code
and not the generic client.
Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/read.c')
-rw-r--r-- | fs/nfs/read.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/fs/nfs/read.c b/fs/nfs/read.c index 2662c0298dd0..cc1f758a7ee1 100644 --- a/fs/nfs/read.c +++ b/fs/nfs/read.c | |||
@@ -464,23 +464,14 @@ static void nfs_readpage_release_partial(void *calldata) | |||
464 | nfs_readdata_release(calldata); | 464 | nfs_readdata_release(calldata); |
465 | } | 465 | } |
466 | 466 | ||
467 | #if defined(CONFIG_NFS_V4_1) | ||
468 | void nfs_read_prepare(struct rpc_task *task, void *calldata) | 467 | void nfs_read_prepare(struct rpc_task *task, void *calldata) |
469 | { | 468 | { |
470 | struct nfs_read_data *data = calldata; | 469 | struct nfs_read_data *data = calldata; |
471 | 470 | NFS_PROTO(data->inode)->read_rpc_prepare(task, data); | |
472 | if (nfs4_setup_sequence(NFS_SERVER(data->inode), | ||
473 | &data->args.seq_args, &data->res.seq_res, | ||
474 | task)) | ||
475 | return; | ||
476 | rpc_call_start(task); | ||
477 | } | 471 | } |
478 | #endif /* CONFIG_NFS_V4_1 */ | ||
479 | 472 | ||
480 | static const struct rpc_call_ops nfs_read_partial_ops = { | 473 | static const struct rpc_call_ops nfs_read_partial_ops = { |
481 | #if defined(CONFIG_NFS_V4_1) | ||
482 | .rpc_call_prepare = nfs_read_prepare, | 474 | .rpc_call_prepare = nfs_read_prepare, |
483 | #endif /* CONFIG_NFS_V4_1 */ | ||
484 | .rpc_call_done = nfs_readpage_result_partial, | 475 | .rpc_call_done = nfs_readpage_result_partial, |
485 | .rpc_release = nfs_readpage_release_partial, | 476 | .rpc_release = nfs_readpage_release_partial, |
486 | }; | 477 | }; |
@@ -544,9 +535,7 @@ static void nfs_readpage_release_full(void *calldata) | |||
544 | } | 535 | } |
545 | 536 | ||
546 | static const struct rpc_call_ops nfs_read_full_ops = { | 537 | static const struct rpc_call_ops nfs_read_full_ops = { |
547 | #if defined(CONFIG_NFS_V4_1) | ||
548 | .rpc_call_prepare = nfs_read_prepare, | 538 | .rpc_call_prepare = nfs_read_prepare, |
549 | #endif /* CONFIG_NFS_V4_1 */ | ||
550 | .rpc_call_done = nfs_readpage_result_full, | 539 | .rpc_call_done = nfs_readpage_result_full, |
551 | .rpc_release = nfs_readpage_release_full, | 540 | .rpc_release = nfs_readpage_release_full, |
552 | }; | 541 | }; |