pool_list
rcv_desc->pool_list = NULL;
rcv_desc->pool_list = rcv_desc->rx_buf_pool;
unm_rx_buffer_t *pool_list;
rx_buffer->next = rcv_desc->pool_list;
rcv_desc->pool_list = rx_buffer;
rx_buffer = rcv_desc->pool_list;
rcv_desc->pool_list = rx_buffer->next;
rcv_desc->pool_list = rcv_desc->recycle_list;
rx_buffer = rcv_desc->pool_list;
rcv_desc->pool_list = rx_buffer->next;
static list_t pool_list; /* doubly-linked list of pools */
list_create(&pool_list, sizeof (pool_t), offsetof(pool_t, pool_link));
list_insert_head(&pool_list, pool_default);
for (pool = list_head(&pool_list); pool;
pool = list_next(&pool_list, pool)) {
for (pool = list_head(&pool_list); pool;
pool = list_next(&pool_list, pool)) {
for (pool = list_head(&pool_list); pool != NULL;
pool = list_next(&pool_list, pool)) {
list_insert_tail(&pool_list, pool);
list_remove(&pool_list, pool);
for (pool = list_head(&pool_list); pool != NULL;
pool = list_next(&pool_list, pool)) {
for (pool = list_head(&pool_list); pool;
pool = list_next(&pool_list, pool)) {