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++) {
664 q->maxflows = min_t(u32, ctl->flows, SFQ_MAX_FLOWS);
667 q->maxflows = min_t(u32, q->maxflows, q->divisor);
685 q->limit = min_t(u32, ctl->limit, q->maxdepth * q->maxflows);
686 q->maxflows = min_t(u32, q->maxflows, q->limit);
755 q->maxflows = SFQ_DEFAULT_FLOWS;
768 q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows);
777 for (i = 0; i < q->maxflows; i++) {
800 opt.v0.flows = q->maxflows;