Searched refs:flowchain (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/net/sched/ |
D | sch_fq_codel.c | 47 struct list_head flowchain; member 197 if (list_empty(&flow->flowchain)) { in fq_codel_enqueue() 198 list_add_tail(&flow->flowchain, &q->new_flows); in fq_codel_enqueue() 254 flow = list_first_entry(head, struct fq_codel_flow, flowchain); in fq_codel_dequeue() 258 list_move_tail(&flow->flowchain, &q->old_flows); in fq_codel_dequeue() 275 list_move_tail(&flow->flowchain, &q->old_flows); in fq_codel_dequeue() 277 list_del_init(&flow->flowchain); in fq_codel_dequeue() 311 INIT_LIST_HEAD(&flow->flowchain); in fq_codel_reset() 449 INIT_LIST_HEAD(&flow->flowchain); in fq_codel_init() 607 if (list_empty(&q->flows[i].flowchain) || in fq_codel_walk()
|
D | sch_hhf.c | 115 struct list_head flowchain; /* chaining under hash collision */ member 189 list_for_each_entry_safe(flow, next, head, flowchain) { in seek_list() 196 if (list_is_last(&flow->flowchain, head)) in seek_list() 198 list_del(&flow->flowchain); in seek_list() 219 list_for_each_entry(flow, head, flowchain) { in alloc_new_hh() 237 INIT_LIST_HEAD(&flow->flowchain); in alloc_new_hh() 238 list_add_tail(&flow->flowchain, head); in alloc_new_hh() 510 list_for_each_entry_safe(flow, next, head, flowchain) { in hhf_destroy() 511 list_del(&flow->flowchain); in hhf_destroy()
|