Lines Matching refs:heb

772 	struct he_buff *heb, *next;  in he_init_group()  local
818 heb = dma_pool_alloc(he_dev->rbpl_pool, GFP_KERNEL, &mapping); in he_init_group()
819 if (!heb) in he_init_group()
821 heb->mapping = mapping; in he_init_group()
822 list_add(&heb->entry, &he_dev->rbpl_outstanding); in he_init_group()
825 he_dev->rbpl_virt[i] = heb; in he_init_group()
891 list_for_each_entry_safe(heb, next, &he_dev->rbpl_outstanding, entry) in he_init_group()
892 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_init_group()
1526 struct he_buff *heb, *next; in he_stop() local
1570 list_for_each_entry_safe(heb, next, &he_dev->rbpl_outstanding, entry) in he_stop()
1571 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_stop()
1648 struct he_buff *heb, *next; in he_service_rbrq() local
1670 heb = he_dev->rbpl_virt[i]; in he_service_rbrq()
1681 list_del(&heb->entry); in he_service_rbrq()
1682 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_service_rbrq()
1694 heb->len = RBRQ_BUFLEN(he_dev->rbrq_head) * 4; in he_service_rbrq()
1696 list_move_tail(&heb->entry, &he_vcc->buffers); in he_service_rbrq()
1697 he_vcc->pdu_len += heb->len; in he_service_rbrq()
1733 list_for_each_entry(heb, &he_vcc->buffers, entry) in he_service_rbrq()
1734 skb_put_data(skb, &heb->data, heb->len); in he_service_rbrq()
1774 list_for_each_entry_safe(heb, next, &he_vcc->buffers, entry) in he_service_rbrq()
1775 dma_pool_free(he_dev->rbpl_pool, heb, heb->mapping); in he_service_rbrq()
1882 struct he_buff *heb; in he_service_rbpl() local
1906 heb = dma_pool_alloc(he_dev->rbpl_pool, GFP_ATOMIC, &mapping); in he_service_rbpl()
1907 if (!heb) in he_service_rbpl()
1909 heb->mapping = mapping; in he_service_rbpl()
1910 list_add(&heb->entry, &he_dev->rbpl_outstanding); in he_service_rbpl()
1911 he_dev->rbpl_virt[i] = heb; in he_service_rbpl()