diff options
author | Andy Adamson <andros@netapp.com> | 2009-04-01 09:22:27 -0400 |
---|---|---|
committer | Benny Halevy <bhalevy@panasas.com> | 2009-06-17 13:46:50 -0400 |
commit | 21d9a851aaa4161a9fddde720594659f3dae7fdd (patch) | |
tree | 6c18c057a56d5318a8e46d4615c03fefd5f5d498 /fs/nfs/nfs4proc.c | |
parent | def6ed7ef45ed19c3d6ca765f3bfdff1fe4c6bba (diff) |
nfs41 commit sequence setup done support
Separate commit calls from nfs41: sequence setup/done support
Implement the commit rpc_call_prepare method for
asynchronuos nfs rpcs, call nfs41_setup_sequence from
respective rpc_call_validate_args methods.
Call nfs4_sequence_done from respective rpc_call_done methods.
Note that we need to pass a pointer to the nfs_server in calls data
for passing on to nfs4_sequence_done.
Signed-off-by: Andy Adamson<andros@netapp.com>
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
[pnfs: client data server write validate and release]
Signed-off-by: Andy Adamson<andros@umich.edu>
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
[nfs41: Support sessions with O_DIRECT.]
Signed-off-by: Dean Hildebrand <dhildeb@us.ibm.com>
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
[nfs41: separate free slot from sequence done]
[nfs41: nfs4_sequence_free_slot use nfs_client for data server]
Signed-off-by: Andy Adamson<andros@umich.edu>
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4proc.c')
-rw-r--r-- | fs/nfs/nfs4proc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 5f71832436fd..fbd6274f14f8 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -2920,10 +2920,14 @@ static int nfs4_commit_done(struct rpc_task *task, struct nfs_write_data *data) | |||
2920 | { | 2920 | { |
2921 | struct inode *inode = data->inode; | 2921 | struct inode *inode = data->inode; |
2922 | 2922 | ||
2923 | nfs4_sequence_done(NFS_SERVER(inode), &data->res.seq_res, | ||
2924 | task->tk_status); | ||
2923 | if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) { | 2925 | if (nfs4_async_handle_error(task, NFS_SERVER(inode), NULL) == -EAGAIN) { |
2924 | rpc_restart_call(task); | 2926 | rpc_restart_call(task); |
2925 | return -EAGAIN; | 2927 | return -EAGAIN; |
2926 | } | 2928 | } |
2929 | nfs4_sequence_free_slot(NFS_SERVER(inode)->nfs_client, | ||
2930 | &data->res.seq_res); | ||
2927 | nfs_refresh_inode(inode, data->res.fattr); | 2931 | nfs_refresh_inode(inode, data->res.fattr); |
2928 | return 0; | 2932 | return 0; |
2929 | } | 2933 | } |