diff options
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 1e41420916ad..b7871ad82aac 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -4387,7 +4387,8 @@ static int nfs4_xdr_dec_pathconf(struct rpc_rqst *req, __be32 *p, struct nfs_pat | |||
4387 | /* | 4387 | /* |
4388 | * STATFS request | 4388 | * STATFS request |
4389 | */ | 4389 | */ |
4390 | static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p, struct nfs_fsstat *fsstat) | 4390 | static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p, |
4391 | struct nfs4_statfs_res *res) | ||
4391 | { | 4392 | { |
4392 | struct xdr_stream xdr; | 4393 | struct xdr_stream xdr; |
4393 | struct compound_hdr hdr; | 4394 | struct compound_hdr hdr; |
@@ -4398,7 +4399,7 @@ static int nfs4_xdr_dec_statfs(struct rpc_rqst *req, __be32 *p, struct nfs_fssta | |||
4398 | if (!status) | 4399 | if (!status) |
4399 | status = decode_putfh(&xdr); | 4400 | status = decode_putfh(&xdr); |
4400 | if (!status) | 4401 | if (!status) |
4401 | status = decode_statfs(&xdr, fsstat); | 4402 | status = decode_statfs(&xdr, res->fsstat); |
4402 | return status; | 4403 | return status; |
4403 | } | 4404 | } |
4404 | 4405 | ||