Searched refs:flows_cnt (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/net/sched/ |
D | sch_fq_codel.c | 61 u32 flows_cnt; /* number of flows */ member 79 return reciprocal_scale(skb_get_hash(skb), q->flows_cnt); in fq_codel_hash() 92 TC_H_MIN(skb->priority) <= q->flows_cnt) in fq_codel_classify() 113 if (TC_H_MIN(res.classid) <= q->flows_cnt) in fq_codel_classify() 160 for (i = 0; i < q->flows_cnt; i++) { in fq_codel_drop() 355 for (i = 0; i < q->flows_cnt; i++) { in fq_codel_reset() 362 memset(q->backlogs, 0, q->flows_cnt * sizeof(u32)); in fq_codel_reset() 397 q->flows_cnt = nla_get_u32(tb[TCA_FQ_CODEL_FLOWS]); in fq_codel_change() 398 if (!q->flows_cnt || in fq_codel_change() 399 q->flows_cnt > 65536) in fq_codel_change() [all …]
|
/Linux-v4.19/include/net/ |
D | fq_impl.h | 122 idx = reciprocal_scale(hash, fq->flows_cnt); in fq_flow_classify() 302 static int fq_init(struct fq *fq, int flows_cnt) in fq_init() argument 309 fq->flows_cnt = max_t(u32, flows_cnt, 1); in fq_init() 315 fq->flows = kcalloc(fq->flows_cnt, sizeof(fq->flows[0]), GFP_KERNEL); in fq_init() 319 for (i = 0; i < fq->flows_cnt; i++) in fq_init() 330 for (i = 0; i < fq->flows_cnt; i++) in fq_reset()
|
D | fq.h | 72 u32 flows_cnt; member
|
/Linux-v4.19/net/mac80211/ |
D | debugfs.c | 98 fq->flows_cnt, in aqm_read()
|
D | tx.c | 1524 local->cvars = kcalloc(fq->flows_cnt, sizeof(local->cvars[0]), in ieee80211_txq_setup_flows() 1533 for (i = 0; i < fq->flows_cnt; i++) in ieee80211_txq_setup_flows()
|
D | cfg.c | 3801 txqstats->max_flows = local->fq.flows_cnt; in ieee80211_get_txq_stats()
|