Home
last modified time | relevance | path

Searched refs:burst_allowance (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/netpfil/ipfw/
H A Ddn_aqm_pie.c304 if ((pst->sflags & PIE_ACTIVE) && pst->burst_allowance>0) { in calculate_drop_prob()
306 if (pst->burst_allowance > pprms->tupdate ) in calculate_drop_prob()
307 pst->burst_allowance -= pprms->tupdate; in calculate_drop_prob()
309 pst->burst_allowance = 0; in calculate_drop_prob()
373 pst->burst_allowance = pprms->max_burst; in init_activate_pie()
510 else if ((pst->sflags & PIE_ACTIVE) && pst->burst_allowance==0 in aqm_pie_enqueue()
533 pst->burst_allowance = pprms->max_burst; in aqm_pie_enqueue()
H A Ddn_sched_fq_pie.c480 if ((pst->sflags & PIE_ACTIVE) && pst->burst_allowance) { in fq_calculate_drop_prob()
481 if (pst->burst_allowance > pprms->tupdate) in fq_calculate_drop_prob()
482 pst->burst_allowance -= pprms->tupdate; in fq_calculate_drop_prob()
484 pst->burst_allowance = 0; in fq_calculate_drop_prob()
510 pst->burst_allowance = pprms->max_burst; in fq_activate_pie()
701 if (pst->sflags & PIE_ACTIVE && pst->burst_allowance == 0 in pie_enqueue()
725 pst->burst_allowance = pprms->max_burst; in pie_enqueue()
H A Ddn_aqm_pie.h72 aqm_time_t burst_allowance; member