Lines Matching full:flows
22 * - Packets are classified on flows.
23 * - This is a Stochastic model (as we use a hash, several flows might
26 * - Flows are linked onto two (Round Robin) lists,
27 * so that new flows have priority on old ones.
58 struct fq_pie_flow *flows; member
151 sel_flow = &q->flows[idx]; in fq_pie_qdisc_enqueue()
306 if (q->flows) { in fq_pie_change()
308 "Number of flows cannot be changed"); in fq_pie_change()
314 "Number of flows must range in [1..65536]"); in fq_pie_change()
395 /* Limit this expensive loop to 2048 flows per round. */ in fq_pie_timer()
399 &q->flows[q->flows_cursor].vars, in fq_pie_timer()
400 q->flows[q->flows_cursor].backlog); in fq_pie_timer()
447 q->flows = kvcalloc(q->flows_cnt, sizeof(struct fq_pie_flow), in fq_pie_init()
449 if (!q->flows) { in fq_pie_init()
454 struct fq_pie_flow *flow = q->flows + idx; in fq_pie_init()
539 struct fq_pie_flow *flow = q->flows + idx; in fq_pie_reset()
557 kvfree(q->flows); in fq_pie_destroy()