diff options
author | Benny Halevy <bhalevy@panasas.com> | 2009-04-01 09:21:54 -0400 |
---|---|---|
committer | Benny Halevy <bhalevy@panasas.com> | 2009-06-17 13:46:20 -0400 |
commit | 43652ad55342d9146d8035932101a5814b22315a (patch) | |
tree | 1bcc69ee2ee1ec04c5ce1c23ecfd5947ea9e4da2 /fs/nfs/nfs4proc.c | |
parent | 557134a39c8d2ab79d8b8d53438e03e29feb5ec4 (diff) |
nfs41: use nfs4_server_caps_arg
In preparation for nfs41 sequence processing.
Signed-off-by: Andy Admason <andros@netapp.com>
[define nfs4_server_caps_arg]
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 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index cdd8e74c47d0..5ef1022b7e6f 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -1584,10 +1584,13 @@ void nfs4_close_context(struct nfs_open_context *ctx, int is_sync) | |||
1584 | 1584 | ||
1585 | static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) | 1585 | static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
1586 | { | 1586 | { |
1587 | struct nfs4_server_caps_arg args = { | ||
1588 | .fhandle = fhandle, | ||
1589 | }; | ||
1587 | struct nfs4_server_caps_res res = {}; | 1590 | struct nfs4_server_caps_res res = {}; |
1588 | struct rpc_message msg = { | 1591 | struct rpc_message msg = { |
1589 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], | 1592 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], |
1590 | .rpc_argp = fhandle, | 1593 | .rpc_argp = &args, |
1591 | .rpc_resp = &res, | 1594 | .rpc_resp = &res, |
1592 | }; | 1595 | }; |
1593 | int status; | 1596 | int status; |