Searched refs:pool_list (Results 1 – 5 of 5) sorted by relevance
149 static list_t pool_list; /* doubly-linked list of pools */ variable176 list_create(&pool_list, sizeof (pool_t), offsetof(pool_t, pool_link)); in pool_init()177 list_insert_head(&pool_list, pool_default); in pool_init()359 for (pool = list_head(&pool_list); pool; in pool_lookup_pool_by_name()360 pool = list_next(&pool_list, pool)) { in pool_lookup_pool_by_name()374 for (pool = list_head(&pool_list); pool; in pool_lookup_pool_by_id()375 pool = list_next(&pool_list, pool)) { in pool_lookup_pool_by_id()389 for (pool = list_head(&pool_list); pool != NULL; in pool_lookup_pool_by_pset()390 pool = list_next(&pool_list, pool)) { in pool_lookup_pool_by_pset()413 list_insert_tail(&pool_list, pool); in pool_pool_create()[all …]
1218 rx_buffer->next = rcv_desc->pool_list; in unm_free_rx_buffer()1219 rcv_desc->pool_list = rx_buffer; in unm_free_rx_buffer()1472 rx_buffer = rcv_desc->pool_list; in unm_reserve_rx_buffer()1473 rcv_desc->pool_list = rx_buffer->next; in unm_reserve_rx_buffer()1480 rcv_desc->pool_list = rcv_desc->recycle_list; in unm_reserve_rx_buffer()1485 rx_buffer = rcv_desc->pool_list; in unm_reserve_rx_buffer()1486 rcv_desc->pool_list = rx_buffer->next; in unm_reserve_rx_buffer()
617 rcv_desc->pool_list = NULL; in unm_destroy_rx_ring()671 rcv_desc->pool_list = rcv_desc->rx_buf_pool; in unm_create_rx_ring()
391 unm_rx_buffer_t *pool_list; member
93 typedef struct pool_list { struct