Searched refs:first_above_time (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/sys/netpfil/ipfw/
H A Ddn_aqm_codel.h71 aqm_time_t first_above_time; /* time for first ts over target we observed */ member in struct:codel_status
95 cst->first_above_time= 0;
117 cst->first_above_time = 0;
119 if (cst->first_above_time == 0) {
121 * first_above_time, will say it's ok to drop. */
122 cst->first_above_time = now + cprms->interval;
123 } else if (now >= cst->first_above_time) {
H A Ddn_sched_fq_codel_helper.h65 q->cst.first_above_time= 0;
85 q->cst.first_above_time = 0;
87 if (q->cst.first_above_time == 0) {
89 * first_above_time, will say it's ok to drop. */
90 q->cst.first_above_time = now + schk->cfg.ccfg.interval;
91 } else if (now >= q->cst.first_above_time) {
H A Ddn_aqm_codel.c306 cst->first_above_time=0;
H A Ddn_sched_fq_codel.c319 si->flows[idx].cst.first_above_time = 0;
/freebsd-13-stable/sys/net/altq/
H A Daltq_codel.h88 * <at> first_above_time: when we went (or will go) continuously above
98 u_int64_t first_above_time; member in struct:codel_vars
H A Daltq_codel.c318 c->vars.first_above_time = 0;
328 c->vars.first_above_time = 0;
338 c->vars.first_above_time = 0;
341 if (c->vars.first_above_time == 0) {
345 c->vars.first_above_time = now + c->params.interval;
348 if (codel_time_after(now, c->vars.first_above_time))

Completed in 174 milliseconds