Commit ecb7a085 authored by Chuck Lever's avatar Chuck Lever

NFSD: Update the NFSv3 WRITE3res encoder to use struct xdr_stream

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent cc9bcdad
...@@ -131,6 +131,19 @@ encode_fh(__be32 *p, struct svc_fh *fhp) ...@@ -131,6 +131,19 @@ encode_fh(__be32 *p, struct svc_fh *fhp)
return p + XDR_QUADLEN(size); return p + XDR_QUADLEN(size);
} }
static bool
svcxdr_encode_writeverf3(struct xdr_stream *xdr, const __be32 *verf)
{
__be32 *p;
p = xdr_reserve_space(xdr, NFS3_WRITEVERFSIZE);
if (!p)
return false;
memcpy(p, verf, NFS3_WRITEVERFSIZE);
return true;
}
static bool static bool
svcxdr_decode_filename3(struct xdr_stream *xdr, char **name, unsigned int *len) svcxdr_decode_filename3(struct xdr_stream *xdr, char **name, unsigned int *len)
{ {
...@@ -1038,17 +1051,28 @@ nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p) ...@@ -1038,17 +1051,28 @@ nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p)
int int
nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p) nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p)
{ {
struct xdr_stream *xdr = &rqstp->rq_res_stream;
struct nfsd3_writeres *resp = rqstp->rq_resp; struct nfsd3_writeres *resp = rqstp->rq_resp;
*p++ = resp->status; if (!svcxdr_encode_nfsstat3(xdr, resp->status))
p = encode_wcc_data(rqstp, p, &resp->fh); return 0;
if (resp->status == 0) { switch (resp->status) {
*p++ = htonl(resp->count); case nfs_ok:
*p++ = htonl(resp->committed); if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
*p++ = resp->verf[0]; return 0;
*p++ = resp->verf[1]; if (xdr_stream_encode_u32(xdr, resp->count) < 0)
return 0;
if (xdr_stream_encode_u32(xdr, resp->committed) < 0)
return 0;
if (!svcxdr_encode_writeverf3(xdr, resp->verf))
return 0;
break;
default:
if (!svcxdr_encode_wcc_data(rqstp, xdr, &resp->fh))
return 0;
} }
return xdr_ressize_check(rqstp, p);
return 1;
} }
/* CREATE, MKDIR, SYMLINK, MKNOD */ /* CREATE, MKDIR, SYMLINK, MKNOD */
......
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