Lines Matching refs:sc_buf_pool
744 INIT_LIST_HEAD(&oct->sc_buf_pool.head); in octeon_setup_sc_buffer_pool()
745 spin_lock_init(&oct->sc_buf_pool.lock); in octeon_setup_sc_buffer_pool()
746 atomic_set(&oct->sc_buf_pool.alloc_buf_count, 0); in octeon_setup_sc_buffer_pool()
761 list_add_tail(&sc->node, &oct->sc_buf_pool.head); in octeon_setup_sc_buffer_pool()
840 spin_lock_bh(&oct->sc_buf_pool.lock); in octeon_free_sc_buffer_pool()
842 list_for_each_safe(tmp, tmp2, &oct->sc_buf_pool.head) { in octeon_free_sc_buffer_pool()
850 INIT_LIST_HEAD(&oct->sc_buf_pool.head); in octeon_free_sc_buffer_pool()
852 spin_unlock_bh(&oct->sc_buf_pool.lock); in octeon_free_sc_buffer_pool()
875 spin_lock_bh(&oct->sc_buf_pool.lock); in octeon_alloc_soft_command()
877 if (list_empty(&oct->sc_buf_pool.head)) { in octeon_alloc_soft_command()
878 spin_unlock_bh(&oct->sc_buf_pool.lock); in octeon_alloc_soft_command()
882 list_for_each(tmp, &oct->sc_buf_pool.head) in octeon_alloc_soft_command()
887 atomic_inc(&oct->sc_buf_pool.alloc_buf_count); in octeon_alloc_soft_command()
889 spin_unlock_bh(&oct->sc_buf_pool.lock); in octeon_alloc_soft_command()
933 spin_lock_bh(&oct->sc_buf_pool.lock); in octeon_free_soft_command()
935 list_add_tail(&sc->node, &oct->sc_buf_pool.head); in octeon_free_soft_command()
937 atomic_dec(&oct->sc_buf_pool.alloc_buf_count); in octeon_free_soft_command()
939 spin_unlock_bh(&oct->sc_buf_pool.lock); in octeon_free_soft_command()