Home
last modified time | relevance | path

Searched refs:toks (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/net/sched/
Dsch_tbf.c218 s64 toks; in tbf_dequeue() local
223 toks = min_t(s64, now - q->t_c, q->buffer); in tbf_dequeue()
226 ptoks = toks + q->ptokens; in tbf_dequeue()
231 toks += q->tokens; in tbf_dequeue()
232 if (toks > q->buffer) in tbf_dequeue()
233 toks = q->buffer; in tbf_dequeue()
234 toks -= (s64) psched_l2t_ns(&q->rate, len); in tbf_dequeue()
236 if ((toks|ptoks) >= 0) { in tbf_dequeue()
242 q->tokens = toks; in tbf_dequeue()
251 now + max_t(long, -toks, -ptoks)); in tbf_dequeue()
Dact_police.c223 s64 now, toks, ptoks = 0; in tcf_police_act() local
248 toks = min_t(s64, now - police->tcfp_t_c, p->tcfp_burst); in tcf_police_act()
250 ptoks = toks + police->tcfp_ptoks; in tcf_police_act()
256 toks += police->tcfp_toks; in tcf_police_act()
257 if (toks > p->tcfp_burst) in tcf_police_act()
258 toks = p->tcfp_burst; in tcf_police_act()
259 toks -= (s64)psched_l2t_ns(&p->rate, qdisc_pkt_len(skb)); in tcf_police_act()
260 if ((toks|ptoks) >= 0) { in tcf_police_act()
262 police->tcfp_toks = toks; in tcf_police_act()
Dsch_htb.c502 s64 toks; in htb_class_mode() local
504 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) { in htb_class_mode()
505 *diff = -toks; in htb_class_mode()
509 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl)) in htb_class_mode()
512 *diff = -toks; in htb_class_mode()
620 s64 toks = diff + cl->tokens; in htb_accnt_tokens() local
622 if (toks > cl->buffer) in htb_accnt_tokens()
623 toks = cl->buffer; in htb_accnt_tokens()
624 toks -= (s64) psched_l2t_ns(&cl->rate, bytes); in htb_accnt_tokens()
625 if (toks <= -cl->mbuffer) in htb_accnt_tokens()
[all …]
/Linux-v5.4/block/
Dsed-opal.c73 struct opal_resp_tok toks[MAX_TOKS]; member
745 tok = &resp->toks[n]; in response_get_token()
884 iter = resp->toks; in response_parse()