diff options
Diffstat (limited to 'fs/nfs/nfs4xdr.c')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index 7b73ca8be909..badd73b7ca12 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c | |||
@@ -1435,7 +1435,7 @@ out: | |||
1435 | /* | 1435 | /* |
1436 | * Encode REMOVE request | 1436 | * Encode REMOVE request |
1437 | */ | 1437 | */ |
1438 | static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs4_remove_arg *args) | 1438 | static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs_removeargs *args) |
1439 | { | 1439 | { |
1440 | struct xdr_stream xdr; | 1440 | struct xdr_stream xdr; |
1441 | struct compound_hdr hdr = { | 1441 | struct compound_hdr hdr = { |
@@ -1447,7 +1447,7 @@ static int nfs4_xdr_enc_remove(struct rpc_rqst *req, __be32 *p, const struct nfs | |||
1447 | encode_compound_hdr(&xdr, &hdr); | 1447 | encode_compound_hdr(&xdr, &hdr); |
1448 | if ((status = encode_putfh(&xdr, args->fh)) != 0) | 1448 | if ((status = encode_putfh(&xdr, args->fh)) != 0) |
1449 | goto out; | 1449 | goto out; |
1450 | if ((status = encode_remove(&xdr, args->name)) != 0) | 1450 | if ((status = encode_remove(&xdr, &args->name)) != 0) |
1451 | goto out; | 1451 | goto out; |
1452 | status = encode_getfattr(&xdr, args->bitmask); | 1452 | status = encode_getfattr(&xdr, args->bitmask); |
1453 | out: | 1453 | out: |
@@ -3835,7 +3835,7 @@ out: | |||
3835 | /* | 3835 | /* |
3836 | * Decode REMOVE response | 3836 | * Decode REMOVE response |
3837 | */ | 3837 | */ |
3838 | static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_remove_res *res) | 3838 | static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_removeres *res) |
3839 | { | 3839 | { |
3840 | struct xdr_stream xdr; | 3840 | struct xdr_stream xdr; |
3841 | struct compound_hdr hdr; | 3841 | struct compound_hdr hdr; |
@@ -3848,7 +3848,7 @@ static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs4_re | |||
3848 | goto out; | 3848 | goto out; |
3849 | if ((status = decode_remove(&xdr, &res->cinfo)) != 0) | 3849 | if ((status = decode_remove(&xdr, &res->cinfo)) != 0) |
3850 | goto out; | 3850 | goto out; |
3851 | decode_getfattr(&xdr, res->dir_attr, res->server); | 3851 | decode_getfattr(&xdr, &res->dir_attr, res->server); |
3852 | out: | 3852 | out: |
3853 | return status; | 3853 | return status; |
3854 | } | 3854 | } |