Home
last modified time | relevance | path

Searched refs:rx_pool (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/libpcap/
H A Dpcap-dos.c58 static char *rx_pool = NULL; variable
761 if (rx_pool) in close_driver()
763 k_free (rx_pool); in close_driver()
764 rx_pool = NULL; in close_driver()
820 rx_pool = k_calloc (RECEIVE_BUF_SIZE, RECEIVE_QUEUE_SIZE); in first_init()
821 if (!rx_pool) in first_init()
840 k_free (rx_pool); in first_init()
841 rx_pool = NULL; in first_init()
861 pktq_init (&dev->queue, RECEIVE_BUF_SIZE, RECEIVE_QUEUE_SIZE, rx_pool); in first_init()
/freebsd/sys/contrib/dev/iwlwifi/pcie/gen1_2/
H A Drx.c494 if (!trans_pcie->rx_pool) in iwl_pcie_free_rbs_pool()
498 if (!trans_pcie->rx_pool[i].page) in iwl_pcie_free_rbs_pool()
500 dma_unmap_page(trans->dev, trans_pcie->rx_pool[i].page_dma, in iwl_pcie_free_rbs_pool()
502 __free_pages(trans_pcie->rx_pool[i].page, in iwl_pcie_free_rbs_pool()
504 trans_pcie->rx_pool[i].page = NULL; in iwl_pcie_free_rbs_pool()
778 trans_pcie->rx_pool = kcalloc(RX_POOL_SIZE(trans_pcie->num_rx_bufs), in iwl_pcie_rx_alloc()
779 sizeof(trans_pcie->rx_pool[0]), in iwl_pcie_rx_alloc()
785 if (!trans_pcie->rxq || !trans_pcie->rx_pool || in iwl_pcie_rx_alloc()
826 kfree(trans_pcie->rx_pool); in iwl_pcie_rx_alloc()
827 trans_pcie->rx_pool = NULL; in iwl_pcie_rx_alloc()
[all …]
H A Dinternal.h406 struct iwl_rx_mem_buffer *rx_pool; member