| 318 | } |
| 319 | |
| 320 | void dma_pool_free(struct pci_pool *pool, void *vaddr, dma_addr_t dma) |
| 321 | { |
| 322 | rte_atomic32_dec(&pool->inuse); |
| 323 | hinic_dma_mem_free(pool->hwdev, pool->elem_size, vaddr, dma); |
| 324 | } |
| 325 | |
| 326 | #define HINIC_MAX_DMA_ENTRIES 8192 |
| 327 | int hinic_osdep_init(struct hinic_hwdev *hwdev) |
nothing calls this directly
no test coverage detected