Home
last modified time | relevance | path

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

/f-stack/freebsd/netpfil/ipfw/
H A Ddn_sched_fq_codel.c149 CTLFLAG_RW, &fq_codel_sysctl.flows_cnt, 1024,
304 idx = fq_codel_classify_flow(m, param->flows_cnt, si); in fq_codel_enqueue()
331 for (maxidx = 0; maxidx < schk->cfg.flows_cnt; maxidx++) in fq_codel_enqueue()
334 if (maxidx < schk->cfg.flows_cnt) { in fq_codel_enqueue()
336 for (i = maxidx + 1; i < schk->cfg.flows_cnt; i++) in fq_codel_enqueue()
457 si->flows = mallocarray(schk->cfg.flows_cnt, in fq_codel_new_sched()
472 for (i = 0; i < schk->cfg.flows_cnt; i++) { in fq_codel_new_sched()
545 fqc_cfg->flows_cnt = fq_codel_sysctl.flows_cnt; in fq_codel_config()
547 fqc_cfg->flows_cnt = ep->par[5]; in fq_codel_config()
557 fqc_cfg->flows_cnt= BOUND_VAR(fqc_cfg->flows_cnt,1,65536); in fq_codel_config()
[all …]
H A Ddn_sched_fq_pie.c92 uint32_t flows_cnt; /* number of flows */ member
554 fqpie_schk->cfg.flows_cnt) / 3; in pie_init()
875 idx = fq_pie_classify_flow(m, param->flows_cnt, si); in fq_pie_enqueue()
904 if (maxidx < schk->cfg.flows_cnt) { in fq_pie_enqueue()
906 for (i = maxidx + 1; i < schk->cfg.flows_cnt; i++) in fq_pie_enqueue()
1054 for (i = 0; i < schk->cfg.flows_cnt; i++) { in fq_pie_new_sched()
1079 for (i = 0; i < schk->cfg.flows_cnt; i++) { in fq_pie_free_sched()
1147 fqp_cfg->flows_cnt = fq_pie_sysctl.flows_cnt; in fq_pie_config()
1149 fqp_cfg->flows_cnt = ep->par[9]; in fq_pie_config()
1165 fqp_cfg->flows_cnt= BOUND_VAR(fqp_cfg->flows_cnt,1,65536); in fq_pie_config()
[all …]
H A Ddn_sched_fq_codel.h46 uint32_t flows_cnt; /* number of flows */ member