maxflows          140 net/sched/sch_sfq.c 	unsigned int	maxflows;	/* number of flows in flows array */
maxflows          547 net/sched/sch_sfq.c 	for (i = 0; i < q->maxflows; i++) {
maxflows          664 net/sched/sch_sfq.c 		q->maxflows = min_t(u32, ctl->flows, SFQ_MAX_FLOWS);
maxflows          667 net/sched/sch_sfq.c 		q->maxflows = min_t(u32, q->maxflows, q->divisor);
maxflows          685 net/sched/sch_sfq.c 		q->limit = min_t(u32, ctl->limit, q->maxdepth * q->maxflows);
maxflows          686 net/sched/sch_sfq.c 		q->maxflows = min_t(u32, q->maxflows, q->limit);
maxflows          755 net/sched/sch_sfq.c 	q->maxflows = SFQ_DEFAULT_FLOWS;
maxflows          768 net/sched/sch_sfq.c 	q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows);
maxflows          777 net/sched/sch_sfq.c 	for (i = 0; i < q->maxflows; i++) {
maxflows          800 net/sched/sch_sfq.c 	opt.v0.flows	= q->maxflows;