Lines Matching defs:maxflows
127 struct sfq_slot *slots; /* Flows table ('maxflows' entries) */
140 unsigned int maxflows; /* number of flows in flows array */
547 for (i = 0; i < q->maxflows; i++) {
667 q->maxflows = min_t(u32, ctl->flows, SFQ_MAX_FLOWS);
670 q->maxflows = min_t(u32, q->maxflows, q->divisor);
688 q->limit = min_t(u32, ctl->limit, q->maxdepth * q->maxflows);
689 q->maxflows = min_t(u32, q->maxflows, q->limit);
758 q->maxflows = SFQ_DEFAULT_FLOWS;
771 q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows);
780 for (i = 0; i < q->maxflows; i++) {
803 opt.v0.flows = q->maxflows;