Home
last modified time | relevance | path

Searched refs:ce_threshold (Results 1 – 5 of 5) sorted by relevance

/linux/net/sched/
H A Dsch_codel.c126 WRITE_ONCE(q->params.ce_threshold, in codel_change()
193 codel_time_t ce_threshold; in codel_dump()
209 ce_threshold = READ_ONCE(q->params.ce_threshold); in codel_dump()
210 if (ce_threshold != CODEL_DISABLED_THRESHOLD && in codel_dump()
212 codel_time_to_us(ce_threshold))) in codel_dump()
191 codel_time_t ce_threshold; codel_dump() local
H A Dsch_fq_codel.c406 WRITE_ONCE(q->cparams.ce_threshold, in fq_codel_change()
536 codel_time_t ce_threshold; in fq_codel_dump() local
561 ce_threshold = READ_ONCE(q->cparams.ce_threshold); in fq_codel_dump()
562 if (ce_threshold != CODEL_DISABLED_THRESHOLD) { in fq_codel_dump()
564 codel_time_to_us(ce_threshold))) in fq_codel_dump()
H A Dsch_fq.c120 u64 ce_threshold; member
717 if (unlikely((s64)(now - time_next_packet - q->ce_threshold) > 0)) { in fq_dequeue()
1106 WRITE_ONCE(q->ce_threshold, in fq_change()
1199 q->ce_threshold = (u64)NSEC_PER_USEC * ~0U; in fq_init()
1220 u64 ce_threshold; in fq_dump() local
1230 ce_threshold = READ_ONCE(q->ce_threshold); in fq_dump()
1231 do_div(ce_threshold, NSEC_PER_USEC); in fq_dump()
1258 nla_put_u32(skb, TCA_FQ_CE_THRESHOLD, (u32)ce_threshold) || in fq_dump()
/linux/include/net/
H A Dcodel_impl.h58 params->ce_threshold = CODEL_DISABLED_THRESHOLD; in codel_params_init()
253 if (skb && codel_time_after(vars->ldelay, params->ce_threshold)) { in codel_dequeue()
H A Dcodel.h109 codel_time_t ce_threshold; member