Home
last modified time | relevance | path

Searched refs:free_pool (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/
H A Decore_spq.c577 OSAL_LIST_INIT(&p_spq->free_pool); in ecore_spq_setup()
589 OSAL_LIST_PUSH_TAIL(&p_virt->list, &p_spq->free_pool); in ecore_spq_setup()
696 if (OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) { in ecore_spq_get_entry()
706 p_ent = OSAL_LIST_FIRST_ENTRY(&p_spq->free_pool, in ecore_spq_get_entry()
709 OSAL_LIST_REMOVE_ENTRY(&p_ent->list, &p_spq->free_pool); in ecore_spq_get_entry()
724 OSAL_LIST_PUSH_TAIL(&p_ent->list, &p_hwfn->p_spq->free_pool); in __ecore_spq_return_entry()
756 if (OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) { in ecore_spq_add_entry()
767 p_en2 = OSAL_LIST_FIRST_ENTRY(&p_spq->free_pool, in ecore_spq_add_entry()
770 OSAL_LIST_REMOVE_ENTRY(&p_en2->list, &p_spq->free_pool); in ecore_spq_add_entry()
862 while (!OSAL_LIST_IS_EMPTY(&p_spq->free_pool)) in ecore_spq_pend_post()
H A Decore_spq.h169 osal_list_t free_pool; member