Lines Matching refs:rq_arg
1179 struct kvec *argv = &rqstp->rq_arg.head[0]; in svc_generic_dispatch()
1495 struct kvec *argv = &rqstp->rq_arg.head[0]; in svc_process()
1542 struct kvec *argv = &rqstp->rq_arg.head[0]; in bc_svc_process()
1558 memcpy(&rqstp->rq_arg, &req->rq_rcv_buf, sizeof(rqstp->rq_arg)); in bc_svc_process()
1562 rqstp->rq_arg.len = req->rq_private_buf.len; in bc_svc_process()
1563 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) { in bc_svc_process()
1564 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len; in bc_svc_process()
1565 rqstp->rq_arg.page_len = 0; in bc_svc_process()
1566 } else if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1567 rqstp->rq_arg.page_len) in bc_svc_process()
1568 rqstp->rq_arg.page_len = rqstp->rq_arg.len - in bc_svc_process()
1569 rqstp->rq_arg.head[0].iov_len; in bc_svc_process()
1571 rqstp->rq_arg.len = rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1572 rqstp->rq_arg.page_len; in bc_svc_process()