Lines Matching defs:head
44 void vchan_dma_desc_free_list(struct virt_dma_chan *vc, struct list_head *head);
170 * @head: list of descriptors found
178 struct list_head *head)
180 list_splice_tail_init(&vc->desc_allocated, head);
181 list_splice_tail_init(&vc->desc_submitted, head);
182 list_splice_tail_init(&vc->desc_issued, head);
183 list_splice_tail_init(&vc->desc_completed, head);
184 list_splice_tail_init(&vc->desc_terminated, head);
191 LIST_HEAD(head);
194 vchan_get_all_descriptors(vc, &head);
195 list_for_each_entry(vd, &head, node)
199 vchan_dma_desc_free_list(vc, &head);
213 LIST_HEAD(head);
220 list_splice_tail_init(&vc->desc_terminated, &head);
224 vchan_dma_desc_free_list(vc, &head);