Lines Matching full:q
154 static inline struct sfq_head *sfq_dep_head(struct sfq_sched_data *q, sfq_index val) in sfq_dep_head() argument
157 return &q->slots[val].dep; in sfq_dep_head()
158 return &q->dep[val - SFQ_MAX_FLOWS]; in sfq_dep_head()
161 static unsigned int sfq_hash(const struct sfq_sched_data *q, in sfq_hash() argument
164 return skb_get_hash_perturb(skb, &q->perturbation) & (q->divisor - 1); in sfq_hash()
170 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_classify() local
177 TC_H_MIN(skb->priority) <= q->divisor) in sfq_classify()
180 fl = rcu_dereference_bh(q->filter_list); in sfq_classify()
182 return sfq_hash(q, skb) + 1; in sfq_classify()
198 if (TC_H_MIN(res.classid) <= q->divisor) in sfq_classify()
207 static inline void sfq_link(struct sfq_sched_data *q, sfq_index x) in sfq_link() argument
210 struct sfq_slot *slot = &q->slots[x]; in sfq_link()
214 n = q->dep[qlen].next; in sfq_link()
219 q->dep[qlen].next = x; /* sfq_dep_head(q, p)->next = x */ in sfq_link()
220 sfq_dep_head(q, n)->prev = x; in sfq_link()
223 #define sfq_unlink(q, x, n, p) \ argument
225 n = q->slots[x].dep.next; \
226 p = q->slots[x].dep.prev; \
227 sfq_dep_head(q, p)->next = n; \
228 sfq_dep_head(q, n)->prev = p; \
232 static inline void sfq_dec(struct sfq_sched_data *q, sfq_index x) in sfq_dec() argument
237 sfq_unlink(q, x, n, p); in sfq_dec()
239 d = q->slots[x].qlen--; in sfq_dec()
240 if (n == p && q->cur_depth == d) in sfq_dec()
241 q->cur_depth--; in sfq_dec()
242 sfq_link(q, x); in sfq_dec()
245 static inline void sfq_inc(struct sfq_sched_data *q, sfq_index x) in sfq_inc() argument
250 sfq_unlink(q, x, n, p); in sfq_inc()
252 d = ++q->slots[x].qlen; in sfq_inc()
253 if (q->cur_depth < d) in sfq_inc()
254 q->cur_depth = d; in sfq_inc()
255 sfq_link(q, x); in sfq_inc()
299 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_drop() local
300 sfq_index x, d = q->cur_depth; in sfq_drop()
307 x = q->dep[d].next; in sfq_drop()
308 slot = &q->slots[x]; in sfq_drop()
310 skb = q->headdrop ? slot_dequeue_head(slot) : slot_dequeue_tail(slot); in sfq_drop()
313 sfq_dec(q, x); in sfq_drop()
314 sch->q.qlen--; in sfq_drop()
322 x = q->tail->next; in sfq_drop()
323 slot = &q->slots[x]; in sfq_drop()
324 q->tail->next = slot->next; in sfq_drop()
325 q->ht[slot->hash] = SFQ_EMPTY_SLOT; in sfq_drop()
333 static int sfq_prob_mark(const struct sfq_sched_data *q) in sfq_prob_mark() argument
335 return q->flags & TC_RED_ECN; in sfq_prob_mark()
339 static int sfq_hard_mark(const struct sfq_sched_data *q) in sfq_hard_mark() argument
341 return (q->flags & (TC_RED_ECN | TC_RED_HARDDROP)) == TC_RED_ECN; in sfq_hard_mark()
344 static int sfq_headdrop(const struct sfq_sched_data *q) in sfq_headdrop() argument
346 return q->headdrop; in sfq_headdrop()
352 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_enqueue() local
369 x = q->ht[hash]; in sfq_enqueue()
370 slot = &q->slots[x]; in sfq_enqueue()
372 x = q->dep[0].next; /* get a free slot */ in sfq_enqueue()
375 q->ht[hash] = x; in sfq_enqueue()
376 slot = &q->slots[x]; in sfq_enqueue()
382 if (q->red_parms) { in sfq_enqueue()
383 slot->vars.qavg = red_calc_qavg_no_idle_time(q->red_parms, in sfq_enqueue()
386 switch (red_action(q->red_parms, in sfq_enqueue()
394 if (sfq_prob_mark(q)) { in sfq_enqueue()
396 if (sfq_headdrop(q) && in sfq_enqueue()
398 q->stats.prob_mark_head++; in sfq_enqueue()
402 q->stats.prob_mark++; in sfq_enqueue()
406 q->stats.prob_drop++; in sfq_enqueue()
411 if (sfq_hard_mark(q)) { in sfq_enqueue()
413 if (sfq_headdrop(q) && in sfq_enqueue()
415 q->stats.forced_mark_head++; in sfq_enqueue()
419 q->stats.forced_mark++; in sfq_enqueue()
423 q->stats.forced_drop++; in sfq_enqueue()
428 if (slot->qlen >= q->maxdepth) { in sfq_enqueue()
430 if (!sfq_headdrop(q)) in sfq_enqueue()
449 sfq_inc(q, x); in sfq_enqueue()
451 if (q->tail == NULL) { /* It is the first flow */ in sfq_enqueue()
454 slot->next = q->tail->next; in sfq_enqueue()
455 q->tail->next = x; in sfq_enqueue()
461 q->tail = slot; in sfq_enqueue()
463 slot->allot = q->scaled_quantum; in sfq_enqueue()
465 if (++sch->q.qlen <= q->limit) in sfq_enqueue()
486 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_dequeue() local
492 if (q->tail == NULL) in sfq_dequeue()
496 a = q->tail->next; in sfq_dequeue()
497 slot = &q->slots[a]; in sfq_dequeue()
499 q->tail = slot; in sfq_dequeue()
500 slot->allot += q->scaled_quantum; in sfq_dequeue()
504 sfq_dec(q, a); in sfq_dequeue()
506 sch->q.qlen--; in sfq_dequeue()
511 q->ht[slot->hash] = SFQ_EMPTY_SLOT; in sfq_dequeue()
514 q->tail = NULL; /* no more active slots */ in sfq_dequeue()
517 q->tail->next = next_a; in sfq_dequeue()
534 * When q->perturbation is changed, we rehash all queued skbs
541 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_rehash() local
551 for (i = 0; i < q->maxflows; i++) { in sfq_rehash()
552 slot = &q->slots[i]; in sfq_rehash()
557 sfq_dec(q, i); in sfq_rehash()
562 q->ht[slot->hash] = SFQ_EMPTY_SLOT; in sfq_rehash()
564 q->tail = NULL; in sfq_rehash()
567 unsigned int hash = sfq_hash(q, skb); in sfq_rehash()
568 sfq_index x = q->ht[hash]; in sfq_rehash()
570 slot = &q->slots[x]; in sfq_rehash()
572 x = q->dep[0].next; /* get a free slot */ in sfq_rehash()
581 q->ht[hash] = x; in sfq_rehash()
582 slot = &q->slots[x]; in sfq_rehash()
585 if (slot->qlen >= q->maxdepth) in sfq_rehash()
588 if (q->red_parms) in sfq_rehash()
589 slot->vars.qavg = red_calc_qavg(q->red_parms, in sfq_rehash()
593 sfq_inc(q, x); in sfq_rehash()
595 if (q->tail == NULL) { /* It is the first flow */ in sfq_rehash()
598 slot->next = q->tail->next; in sfq_rehash()
599 q->tail->next = x; in sfq_rehash()
601 q->tail = slot; in sfq_rehash()
602 slot->allot = q->scaled_quantum; in sfq_rehash()
605 sch->q.qlen -= dropped; in sfq_rehash()
611 struct sfq_sched_data *q = from_timer(q, t, perturb_timer); in sfq_perturbation() local
612 struct Qdisc *sch = q->sch; in sfq_perturbation()
618 q->perturbation = nkey; in sfq_perturbation()
619 if (!q->filter_list && q->tail) in sfq_perturbation()
623 if (q->perturb_period) in sfq_perturbation()
624 mod_timer(&q->perturb_timer, jiffies + q->perturb_period); in sfq_perturbation()
629 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_change() local
663 q->quantum = ctl->quantum; in sfq_change()
664 q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); in sfq_change()
666 q->perturb_period = ctl->perturb_period * HZ; in sfq_change()
668 q->maxflows = min_t(u32, ctl->flows, SFQ_MAX_FLOWS); in sfq_change()
670 q->divisor = ctl->divisor; in sfq_change()
671 q->maxflows = min_t(u32, q->maxflows, q->divisor); in sfq_change()
675 q->maxdepth = min_t(u32, ctl_v1->depth, SFQ_MAX_DEPTH); in sfq_change()
677 swap(q->red_parms, p); in sfq_change()
678 red_set_parms(q->red_parms, in sfq_change()
685 q->flags = ctl_v1->flags; in sfq_change()
686 q->headdrop = ctl_v1->headdrop; in sfq_change()
689 q->limit = min_t(u32, ctl->limit, q->maxdepth * q->maxflows); in sfq_change()
690 q->maxflows = min_t(u32, q->maxflows, q->limit); in sfq_change()
693 qlen = sch->q.qlen; in sfq_change()
694 while (sch->q.qlen > q->limit) { in sfq_change()
701 qdisc_tree_reduce_backlog(sch, qlen - sch->q.qlen, dropped); in sfq_change()
703 del_timer(&q->perturb_timer); in sfq_change()
704 if (q->perturb_period) { in sfq_change()
705 mod_timer(&q->perturb_timer, jiffies + q->perturb_period); in sfq_change()
706 get_random_bytes(&q->perturbation, sizeof(q->perturbation)); in sfq_change()
725 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_destroy() local
727 tcf_block_put(q->block); in sfq_destroy()
728 q->perturb_period = 0; in sfq_destroy()
729 del_timer_sync(&q->perturb_timer); in sfq_destroy()
730 sfq_free(q->ht); in sfq_destroy()
731 sfq_free(q->slots); in sfq_destroy()
732 kfree(q->red_parms); in sfq_destroy()
738 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_init() local
742 q->sch = sch; in sfq_init()
743 timer_setup(&q->perturb_timer, sfq_perturbation, TIMER_DEFERRABLE); in sfq_init()
745 err = tcf_block_get(&q->block, &q->filter_list, sch, extack); in sfq_init()
750 q->dep[i].next = i + SFQ_MAX_FLOWS; in sfq_init()
751 q->dep[i].prev = i + SFQ_MAX_FLOWS; in sfq_init()
754 q->limit = SFQ_MAX_DEPTH; in sfq_init()
755 q->maxdepth = SFQ_MAX_DEPTH; in sfq_init()
756 q->cur_depth = 0; in sfq_init()
757 q->tail = NULL; in sfq_init()
758 q->divisor = SFQ_DEFAULT_HASH_DIVISOR; in sfq_init()
759 q->maxflows = SFQ_DEFAULT_FLOWS; in sfq_init()
760 q->quantum = psched_mtu(qdisc_dev(sch)); in sfq_init()
761 q->scaled_quantum = SFQ_ALLOT_SIZE(q->quantum); in sfq_init()
762 q->perturb_period = 0; in sfq_init()
763 get_random_bytes(&q->perturbation, sizeof(q->perturbation)); in sfq_init()
771 q->ht = sfq_alloc(sizeof(q->ht[0]) * q->divisor); in sfq_init()
772 q->slots = sfq_alloc(sizeof(q->slots[0]) * q->maxflows); in sfq_init()
773 if (!q->ht || !q->slots) { in sfq_init()
778 for (i = 0; i < q->divisor; i++) in sfq_init()
779 q->ht[i] = SFQ_EMPTY_SLOT; in sfq_init()
781 for (i = 0; i < q->maxflows; i++) { in sfq_init()
782 slot_queue_init(&q->slots[i]); in sfq_init()
783 sfq_link(q, i); in sfq_init()
785 if (q->limit >= 1) in sfq_init()
794 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_dump() local
797 struct red_parms *p = q->red_parms; in sfq_dump()
800 opt.v0.quantum = q->quantum; in sfq_dump()
801 opt.v0.perturb_period = q->perturb_period / HZ; in sfq_dump()
802 opt.v0.limit = q->limit; in sfq_dump()
803 opt.v0.divisor = q->divisor; in sfq_dump()
804 opt.v0.flows = q->maxflows; in sfq_dump()
805 opt.depth = q->maxdepth; in sfq_dump()
806 opt.headdrop = q->headdrop; in sfq_dump()
816 memcpy(&opt.stats, &q->stats, sizeof(opt.stats)); in sfq_dump()
817 opt.flags = q->flags; in sfq_dump()
845 static void sfq_unbind(struct Qdisc *q, unsigned long cl) in sfq_unbind() argument
852 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_tcf_block() local
856 return q->block; in sfq_tcf_block()
869 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_dump_class_stats() local
870 sfq_index idx = q->ht[cl - 1]; in sfq_dump_class_stats()
875 const struct sfq_slot *slot = &q->slots[idx]; in sfq_dump_class_stats()
888 struct sfq_sched_data *q = qdisc_priv(sch); in sfq_walk() local
894 for (i = 0; i < q->divisor; i++) { in sfq_walk()
895 if (q->ht[i] == SFQ_EMPTY_SLOT || in sfq_walk()