Lines Matching refs:rq_arg
1297 struct kvec *argv = &rqstp->rq_arg.head[0]; in svc_process()
1348 struct kvec *argv = &rqstp->rq_arg.head[0]; in bc_svc_process()
1364 memcpy(&rqstp->rq_arg, &req->rq_rcv_buf, sizeof(rqstp->rq_arg)); in bc_svc_process()
1368 rqstp->rq_arg.len = req->rq_private_buf.len; in bc_svc_process()
1369 if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len) { in bc_svc_process()
1370 rqstp->rq_arg.head[0].iov_len = rqstp->rq_arg.len; in bc_svc_process()
1371 rqstp->rq_arg.page_len = 0; in bc_svc_process()
1372 } else if (rqstp->rq_arg.len <= rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1373 rqstp->rq_arg.page_len) in bc_svc_process()
1374 rqstp->rq_arg.page_len = rqstp->rq_arg.len - in bc_svc_process()
1375 rqstp->rq_arg.head[0].iov_len; in bc_svc_process()
1377 rqstp->rq_arg.len = rqstp->rq_arg.head[0].iov_len + in bc_svc_process()
1378 rqstp->rq_arg.page_len; in bc_svc_process()