NFSD: Update the NFSv3 SETACL result encoder to use struct xdr_stream
authorChuck Lever <chuck.lever@oracle.com>
Wed, 18 Nov 2020 21:21:24 +0000 (16:21 -0500)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 22 Mar 2021 14:19:02 +0000 (10:19 -0400)
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfs3acl.c

index 1199102..a1591fe 100644 (file)
@@ -219,11 +219,11 @@ static int nfs3svc_encode_getaclres(struct svc_rqst *rqstp, __be32 *p)
 /* SETACL */
 static int nfs3svc_encode_setaclres(struct svc_rqst *rqstp, __be32 *p)
 {
+       struct xdr_stream *xdr = &rqstp->rq_res_stream;
        struct nfsd3_attrstat *resp = rqstp->rq_resp;
 
-       *p++ = resp->status;
-       p = nfs3svc_encode_post_op_attr(rqstp, p, &resp->fh);
-       return xdr_ressize_check(rqstp, p);
+       return svcxdr_encode_nfsstat3(xdr, resp->status) &&
+               svcxdr_encode_post_op_attr(rqstp, xdr, &resp->fh);
 }
 
 /*