Lines Matching refs:head
37 * head drops only.
43 struct sk_buff *head;
115 /* remove one skb from head of slot queue */
118 struct sk_buff *skb = flow->head;
120 flow->head = skb->next;
129 if (flow->head == NULL)
130 flow->head = skb;
263 if (flow->head) {
286 struct list_head *head;
289 head = &q->new_flows;
290 if (list_empty(head)) {
291 head = &q->old_flows;
292 if (list_empty(head))
295 flow = list_first_entry(head, struct fq_codel_flow, flowchain);
309 if ((head == &q->new_flows) && !list_empty(&q->old_flows))
331 rtnl_kfree_skbs(flow->head, flow->tail);
332 flow->head = NULL;
657 if (flow->head) {
659 skb = flow->head;