Lines Matching refs:rqst
76 struct rpc_rqst *rqst, in svc_rdma_bc_sendto() argument
81 ret = svc_rdma_map_reply_msg(rdma, ctxt, NULL, &rqst->rq_snd_buf); in svc_rdma_bc_sendto()
88 get_page(virt_to_page(rqst->rq_buffer)); in svc_rdma_bc_sendto()
100 struct rpc_rqst *rqst = task->tk_rqstp; in xprt_rdma_bc_allocate() local
101 size_t size = rqst->rq_callsize; in xprt_rdma_bc_allocate()
113 rqst->rq_buffer = page_address(page); in xprt_rdma_bc_allocate()
115 rqst->rq_rbuffer = kmalloc(rqst->rq_rcvsize, RPCRDMA_DEF_GFP); in xprt_rdma_bc_allocate()
116 if (!rqst->rq_rbuffer) { in xprt_rdma_bc_allocate()
126 struct rpc_rqst *rqst = task->tk_rqstp; in xprt_rdma_bc_free() local
128 put_page(virt_to_page(rqst->rq_buffer)); in xprt_rdma_bc_free()
129 kfree(rqst->rq_rbuffer); in xprt_rdma_bc_free()
133 rpcrdma_bc_send_request(struct svcxprt_rdma *rdma, struct rpc_rqst *rqst) in rpcrdma_bc_send_request() argument
135 struct rpc_xprt *xprt = rqst->rq_xprt; in rpcrdma_bc_send_request()
148 *p++ = rqst->rq_xid; in rpcrdma_bc_send_request()
156 rqst->rq_xtime = ktime_get(); in rpcrdma_bc_send_request()
157 rc = svc_rdma_bc_sendto(rdma, rqst, ctxt); in rpcrdma_bc_send_request()
177 static int xprt_rdma_bc_send_request(struct rpc_rqst *rqst) in xprt_rdma_bc_send_request() argument
179 struct svc_xprt *sxprt = rqst->rq_xprt->bc_xprt; in xprt_rdma_bc_send_request()
187 ret = rpcrdma_bc_send_request(rdma, rqst); in xprt_rdma_bc_send_request()