NFSD: Update the NFSv3 RENAMEv3res encoder to use struct xdr_stream
[ Upstream commit 89d79e9672dfa6d0cc416699c16f2d312da58ff2 ] Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2f31aa3e49
commit
5cd3abdfee
1 changed files with 4 additions and 4 deletions
|
@ -1116,12 +1116,12 @@ nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p)
|
||||||
int
|
int
|
||||||
nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
|
nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p)
|
||||||
{
|
{
|
||||||
|
struct xdr_stream *xdr = &rqstp->rq_res_stream;
|
||||||
struct nfsd3_renameres *resp = rqstp->rq_resp;
|
struct nfsd3_renameres *resp = rqstp->rq_resp;
|
||||||
|
|
||||||
*p++ = resp->status;
|
return svcxdr_encode_nfsstat3(xdr, resp->status) &&
|
||||||
p = encode_wcc_data(rqstp, p, &resp->ffh);
|
svcxdr_encode_wcc_data(rqstp, xdr, &resp->ffh) &&
|
||||||
p = encode_wcc_data(rqstp, p, &resp->tfh);
|
svcxdr_encode_wcc_data(rqstp, xdr, &resp->tfh);
|
||||||
return xdr_ressize_check(rqstp, p);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* LINK */
|
/* LINK */
|
||||||
|
|
Loading…
Add table
Reference in a new issue