Lines Matching refs:rq_arg
1190 struct kvec *argv = &rqstp->rq_arg.head[0]; in svc_generic_dispatch()
1502 struct kvec *argv = &rqstp->rq_arg.head[0]; in svc_process()
1553 struct kvec *argv = &rqstp->rq_arg.head[0]; in bc_svc_process()
1569 memcpy(&rqstp->rq_arg, &req->rq_rcv_buf, sizeof(rqstp->rq_arg)); in bc_svc_process()
1573 rqstp->rq_arg.len = req->rq_private_buf.len; in bc_svc_process()
1574 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) { in bc_svc_process()
1575 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len; in bc_svc_process()
1576 rqstp->rq_arg.page_len = 0; in bc_svc_process()
1577 } else if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1578 rqstp->rq_arg.page_len) in bc_svc_process()
1579 rqstp->rq_arg.page_len = rqstp->rq_arg.len - in bc_svc_process()
1580 rqstp->rq_arg.head[0].iov_len; in bc_svc_process()
1582 rqstp->rq_arg.len = rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1583 rqstp->rq_arg.page_len; in bc_svc_process()