Lines Matching refs:heb
772 struct he_buff *heb, *next; in he_init_group() local
821 heb = dma_pool_alloc(he_dev->rbpl_pool, GFP_KERNEL, &mapping); in he_init_group()
822 if (!heb) in he_init_group()
824 heb->mapping = mapping; in he_init_group()
825 list_add(&heb->entry, &he_dev->rbpl_outstanding); in he_init_group()
828 he_dev->rbpl_virt[i] = heb; in he_init_group()
894 list_for_each_entry_safe(heb, next, &he_dev->rbpl_outstanding, entry) in he_init_group()
895 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_init_group()
1529 struct he_buff *heb, *next; in he_stop() local
1573 list_for_each_entry_safe(heb, next, &he_dev->rbpl_outstanding, entry) in he_stop()
1574 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_stop()
1651 struct he_buff *heb, *next; in he_service_rbrq() local
1673 heb = he_dev->rbpl_virt[i]; in he_service_rbrq()
1684 list_del(&heb->entry); in he_service_rbrq()
1685 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_service_rbrq()
1697 heb->len = RBRQ_BUFLEN(he_dev->rbrq_head) * 4; in he_service_rbrq()
1699 list_move_tail(&heb->entry, &he_vcc->buffers); in he_service_rbrq()
1700 he_vcc->pdu_len += heb->len; in he_service_rbrq()
1736 list_for_each_entry(heb, &he_vcc->buffers, entry) in he_service_rbrq()
1737 skb_put_data(skb, &heb->data, heb->len); in he_service_rbrq()
1777 list_for_each_entry_safe(heb, next, &he_vcc->buffers, entry) in he_service_rbrq()
1778 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_service_rbrq()
1885 struct he_buff *heb; in he_service_rbpl() local
1909 heb = dma_pool_alloc(he_dev->rbpl_pool, GFP_ATOMIC, &mapping); in he_service_rbpl()
1910 if (!heb) in he_service_rbpl()
1912 heb->mapping = mapping; in he_service_rbpl()
1913 list_add(&heb->entry, &he_dev->rbpl_outstanding); in he_service_rbpl()
1914 he_dev->rbpl_virt[i] = heb; in he_service_rbpl()