aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/svc.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2005-06-22 13:16:19 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2005-06-22 16:07:02 -0400
commit334ccfd545bba9690515f2c5c167d5adb161989b (patch)
tree8a06af4d40c711c578adc36d9afd3200a88a2689 /net/sunrpc/svc.c
parentd05fdb0cec75415b2d9eb95748386e67414e49c3 (diff)
[PATCH] RPC: Ensure XDR iovec length is initialized correctly in call_header
Fix up call_header() so that it calls xdr_adjust_iovec(). Fix calculation of the scratch buffer length in xdr_init_encode(). Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r--net/sunrpc/svc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
index bb2d99f33315..a02d424a7409 100644
--- a/net/sunrpc/svc.c
+++ b/net/sunrpc/svc.c
@@ -281,6 +281,7 @@ svc_process(struct svc_serv *serv, struct svc_rqst *rqstp)
281 rqstp->rq_res.len = 0; 281 rqstp->rq_res.len = 0;
282 rqstp->rq_res.page_base = 0; 282 rqstp->rq_res.page_base = 0;
283 rqstp->rq_res.page_len = 0; 283 rqstp->rq_res.page_len = 0;
284 rqstp->rq_res.buflen = PAGE_SIZE;
284 rqstp->rq_res.tail[0].iov_len = 0; 285 rqstp->rq_res.tail[0].iov_len = 0;
285 /* tcp needs a space for the record length... */ 286 /* tcp needs a space for the record length... */
286 if (rqstp->rq_prot == IPPROTO_TCP) 287 if (rqstp->rq_prot == IPPROTO_TCP)