aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs4xdr.c
diff options
context:
space:
mode:
authorBenny Halevy <bhalevy@panasas.com>2009-04-01 09:22:02 -0400
committerBenny Halevy <bhalevy@panasas.com>2009-06-17 13:46:27 -0400
commit22958463d5dca8548e19430779f379e66fd6e4a4 (patch)
tree6483363bee0eb39f155774858bdd06d5d8dc9d4a /fs/nfs/nfs4xdr.c
parent73c403a9a93743b068103c13c05ed136dc687d05 (diff)
nfs41: use nfs4_fs_locations_res
In preparation for nfs41 sequence processing. Signed-off-by: Andy Admason <andros@netapp.com> [find nfs4_fs_locations_res] Signed-off-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r--fs/nfs/nfs4xdr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c
index aa350d5bf207..e448e33b4d05 100644
--- a/fs/nfs/nfs4xdr.c
+++ b/fs/nfs/nfs4xdr.c
@@ -4504,7 +4504,8 @@ out:
4504/* 4504/*
4505 * FS_LOCATIONS request 4505 * FS_LOCATIONS request
4506 */ 4506 */
4507static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p, struct nfs4_fs_locations *res) 4507static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p,
4508 struct nfs4_fs_locations_res *res)
4508{ 4509{
4509 struct xdr_stream xdr; 4510 struct xdr_stream xdr;
4510 struct compound_hdr hdr; 4511 struct compound_hdr hdr;
@@ -4519,7 +4520,8 @@ static int nfs4_xdr_dec_fs_locations(struct rpc_rqst *req, __be32 *p, struct nfs
4519 if ((status = decode_lookup(&xdr)) != 0) 4520 if ((status = decode_lookup(&xdr)) != 0)
4520 goto out; 4521 goto out;
4521 xdr_enter_page(&xdr, PAGE_SIZE); 4522 xdr_enter_page(&xdr, PAGE_SIZE);
4522 status = decode_getfattr(&xdr, &res->fattr, res->server); 4523 status = decode_getfattr(&xdr, &res->fs_locations->fattr,
4524 res->fs_locations->server);
4523out: 4525out:
4524 return status; 4526 return status;
4525} 4527}