Lines Matching refs:dma_head
154 cq->rq.dma_head = devm_kcalloc(ice_hw_to_dev(hw), cq->num_rq_entries, in ice_alloc_rq_bufs()
156 if (!cq->rq.dma_head) in ice_alloc_rq_bufs()
158 cq->rq.r.rq_bi = (struct ice_dma_mem *)cq->rq.dma_head; in ice_alloc_rq_bufs()
207 devm_kfree(ice_hw_to_dev(hw), cq->rq.dma_head); in ice_alloc_rq_bufs()
208 cq->rq.dma_head = NULL; in ice_alloc_rq_bufs()
224 cq->sq.dma_head = devm_kcalloc(ice_hw_to_dev(hw), cq->num_sq_entries, in ice_alloc_sq_bufs()
226 if (!cq->sq.dma_head) in ice_alloc_sq_bufs()
228 cq->sq.r.sq_bi = (struct ice_dma_mem *)cq->sq.dma_head; in ice_alloc_sq_bufs()
255 devm_kfree(ice_hw_to_dev(hw), cq->sq.dma_head); in ice_alloc_sq_bufs()
256 cq->sq.dma_head = NULL; in ice_alloc_sq_bufs()
331 devm_kfree(ice_hw_to_dev(hw), (qi)->ring.dma_head); \