Commit dca71651 authored by Chuck Lever's avatar Chuck Lever

NFSD: Replace READ* macros in nfsd4_decode_open_downgrade()

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent 06bee693
...@@ -1172,21 +1172,19 @@ nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_con ...@@ -1172,21 +1172,19 @@ nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_con
static __be32 static __be32
nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down) nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
{ {
DECODE_HEAD; __be32 status;
status = nfsd4_decode_stateid(argp, &open_down->od_stateid); status = nfsd4_decode_stateid4(argp, &open_down->od_stateid);
if (status) if (status)
return status; return status;
READ_BUF(4); if (xdr_stream_decode_u32(argp->xdr, &open_down->od_seqid) < 0)
open_down->od_seqid = be32_to_cpup(p++); return nfserr_bad_xdr;
/* deleg_want is ignored */
status = nfsd4_decode_share_access(argp, &open_down->od_share_access, status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
&open_down->od_deleg_want, NULL); &open_down->od_deleg_want, NULL);
if (status) if (status)
return status; return status;
status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny); return nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
if (status)
return status;
DECODE_TAIL;
} }
static __be32 static __be32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment