From: Chuck Lever Date: Thu, 19 Nov 2020 18:47:16 +0000 (-0500) Subject: NFSD: Replace READ* macros that decode the fattr4 size attribute X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2ac1b9b2afbbacf597dbec722b23b6be62e4e41e;p=linux.git NFSD: Replace READ* macros that decode the fattr4 size attribute Signed-off-by: Chuck Lever --- diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index cd114e9cbbc7d..7d7efb9978da1 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -273,8 +273,11 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, starting_pos = xdr_stream_pos(argp->xdr); if (bmval[0] & FATTR4_WORD0_SIZE) { - READ_BUF(8); - p = xdr_decode_hyper(p, &iattr->ia_size); + u64 size; + + if (xdr_stream_decode_u64(argp->xdr, &size) < 0) + return nfserr_bad_xdr; + iattr->ia_size = size; iattr->ia_valid |= ATTR_SIZE; } if (bmval[0] & FATTR4_WORD0_ACL) {