Commit 2d124dfa authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: move proc_compound xdr encode init to helper

Mechanical transformation with no change of behavior.
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent d5184658
...@@ -1253,6 +1253,18 @@ static bool need_wrongsec_check(struct svc_rqst *rqstp) ...@@ -1253,6 +1253,18 @@ static bool need_wrongsec_check(struct svc_rqst *rqstp)
return !(nextd->op_flags & OP_HANDLES_WRONGSEC); return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
} }
static void svcxdr_init_encode(struct svc_rqst *rqstp,
struct nfsd4_compoundres *resp)
{
struct xdr_stream *xdr = &resp->xdr;
struct xdr_buf *buf = &rqstp->rq_res;
struct kvec *head = buf->head;
xdr->buf = buf;
xdr->p = head->iov_base + head->iov_len;
xdr->end = head->iov_base + PAGE_SIZE;
}
/* /*
* COMPOUND call. * COMPOUND call.
*/ */
...@@ -1270,13 +1282,10 @@ nfsd4_proc_compound(struct svc_rqst *rqstp, ...@@ -1270,13 +1282,10 @@ nfsd4_proc_compound(struct svc_rqst *rqstp,
u32 plen = 0; u32 plen = 0;
__be32 status; __be32 status;
resp->xdr.buf = &rqstp->rq_res; svcxdr_init_encode(rqstp, resp);
resp->xdr.p = rqstp->rq_res.head[0].iov_base +
rqstp->rq_res.head[0].iov_len;
resp->tagp = resp->xdr.p; resp->tagp = resp->xdr.p;
/* reserve space for: taglen, tag, and opcnt */ /* reserve space for: taglen, tag, and opcnt */
resp->xdr.p += 2 + XDR_QUADLEN(args->taglen); resp->xdr.p += 2 + XDR_QUADLEN(args->taglen);
resp->xdr.end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
resp->taglen = args->taglen; resp->taglen = args->taglen;
resp->tag = args->tag; resp->tag = args->tag;
resp->opcnt = 0; resp->opcnt = 0;
......
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