Home
last modified time | relevance | path

Searched refs:xbufp (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/net/sunrpc/
Dbackchannel_rqst.c59 struct xdr_buf *xbufp; in xprt_free_allocation() local
63 xbufp = &req->rq_rcv_buf; in xprt_free_allocation()
64 free_page((unsigned long)xbufp->head[0].iov_base); in xprt_free_allocation()
65 xbufp = &req->rq_snd_buf; in xprt_free_allocation()
66 free_page((unsigned long)xbufp->head[0].iov_base); in xprt_free_allocation()
91 struct xdr_buf *xbufp = NULL; in xprt_setup_backchannel() local
129 xbufp = &req->rq_rcv_buf; in xprt_setup_backchannel()
130 xbufp->head[0].iov_base = page_address(page_rcv); in xprt_setup_backchannel()
131 xbufp->head[0].iov_len = PAGE_SIZE; in xprt_setup_backchannel()
132 xbufp->tail[0].iov_base = NULL; in xprt_setup_backchannel()
[all …]
Dxprtsock.c2377 struct xdr_buf *xbufp = &req->rq_snd_buf; in bc_sendto() local
2385 xs_encode_stream_record_marker(xbufp); in bc_sendto()
2387 tailoff = (unsigned long)xbufp->tail[0].iov_base & ~PAGE_MASK; in bc_sendto()
2388 headoff = (unsigned long)xbufp->head[0].iov_base & ~PAGE_MASK; in bc_sendto()
2389 len = svc_send_common(sock, xbufp, in bc_sendto()
2390 virt_to_page(xbufp->head[0].iov_base), headoff, in bc_sendto()
2391 xbufp->tail[0].iov_base, tailoff); in bc_sendto()
2393 if (len != xbufp->len) { in bc_sendto()
Dsvcsock.c1189 struct xdr_buf *xbufp = &rqstp->rq_res; in svc_tcp_sendto() local
1197 reclen = htonl(0x80000000|((xbufp->len ) - 4)); in svc_tcp_sendto()
1198 memcpy(xbufp->head[0].iov_base, &reclen, 4); in svc_tcp_sendto()
1201 if (sent != xbufp->len) { in svc_tcp_sendto()
1207 sent, xbufp->len); in svc_tcp_sendto()
Dclnt.c1040 struct xdr_buf *xbufp = &req->rq_snd_buf; in rpc_run_bc_task() local
1060 xbufp->len = xbufp->head[0].iov_len + xbufp->page_len + in rpc_run_bc_task()
1061 xbufp->tail[0].iov_len; in rpc_run_bc_task()