|
@@ -431,20 +431,14 @@ static int nfs4_stat_to_errno(int);
|
|
|
#define NFS4_enc_open_sz (compound_encode_hdr_maxsz + \
|
|
|
encode_sequence_maxsz + \
|
|
|
encode_putfh_maxsz + \
|
|
|
- encode_savefh_maxsz + \
|
|
|
encode_open_maxsz + \
|
|
|
encode_getfh_maxsz + \
|
|
|
- encode_getattr_maxsz + \
|
|
|
- encode_restorefh_maxsz + \
|
|
|
encode_getattr_maxsz)
|
|
|
#define NFS4_dec_open_sz (compound_decode_hdr_maxsz + \
|
|
|
decode_sequence_maxsz + \
|
|
|
decode_putfh_maxsz + \
|
|
|
- decode_savefh_maxsz + \
|
|
|
decode_open_maxsz + \
|
|
|
decode_getfh_maxsz + \
|
|
|
- decode_getattr_maxsz + \
|
|
|
- decode_restorefh_maxsz + \
|
|
|
decode_getattr_maxsz)
|
|
|
#define NFS4_enc_open_confirm_sz \
|
|
|
(compound_encode_hdr_maxsz + \
|
|
@@ -2191,12 +2185,9 @@ static void nfs4_xdr_enc_open(struct rpc_rqst *req, struct xdr_stream *xdr,
|
|
|
encode_compound_hdr(xdr, req, &hdr);
|
|
|
encode_sequence(xdr, &args->seq_args, &hdr);
|
|
|
encode_putfh(xdr, args->fh, &hdr);
|
|
|
- encode_savefh(xdr, &hdr);
|
|
|
encode_open(xdr, args, &hdr);
|
|
|
encode_getfh(xdr, &hdr);
|
|
|
encode_getfattr(xdr, args->bitmask, &hdr);
|
|
|
- encode_restorefh(xdr, &hdr);
|
|
|
- encode_getfattr(xdr, args->dir_bitmask, &hdr);
|
|
|
encode_nops(&hdr);
|
|
|
}
|
|
|
|
|
@@ -6073,9 +6064,6 @@ static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
|
|
|
if (status)
|
|
|
goto out;
|
|
|
status = decode_putfh(xdr);
|
|
|
- if (status)
|
|
|
- goto out;
|
|
|
- status = decode_savefh(xdr);
|
|
|
if (status)
|
|
|
goto out;
|
|
|
status = decode_open(xdr, res);
|
|
@@ -6083,11 +6071,7 @@ static int nfs4_xdr_dec_open(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
|
|
|
goto out;
|
|
|
if (decode_getfh(xdr, &res->fh) != 0)
|
|
|
goto out;
|
|
|
- if (decode_getfattr(xdr, res->f_attr, res->server) != 0)
|
|
|
- goto out;
|
|
|
- if (decode_restorefh(xdr) != 0)
|
|
|
- goto out;
|
|
|
- decode_getfattr(xdr, res->dir_attr, res->server);
|
|
|
+ decode_getfattr(xdr, res->f_attr, res->server);
|
|
|
out:
|
|
|
return status;
|
|
|
}
|