Lines Matching refs:size
79 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction);
573 /* Fixed-size circular FIFO queue. This implementation is wait-free and
626 * the circular queue size stops Send Queue overflow by causing
649 /* The sendctx queue is not guaranteed to have a size that is a
804 * @size: initial size, in bytes, of send and receive buffers
809 size_t size)
818 req->rl_sendbuf = rpcrdma_regbuf_alloc(size, DMA_TO_DEVICE);
822 req->rl_recvbuf = rpcrdma_regbuf_alloc(size, DMA_NONE);
853 /* Compute maximum header buffer size in bytes */
1230 rpcrdma_regbuf_alloc(size_t size, enum dma_data_direction direction)
1237 rb->rg_data = kmalloc(size, XPRTRDMA_GFP_FLAGS);
1245 rb->rg_iov.length = size;
1252 * @size: size of buffer to be allocated, in bytes
1258 bool rpcrdma_regbuf_realloc(struct rpcrdma_regbuf *rb, size_t size, gfp_t flags)
1262 buf = kmalloc(size, flags);
1270 rb->rg_iov.length = size;