Home
last modified time | relevance | path

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

/Linux-v5.15/net/sched/
Dact_police.c246 s64 now, toks, ppstoks = 0, ptoks = 0; in tcf_police_act() local
272 toks = min_t(s64, now - police->tcfp_t_c, p->tcfp_burst); in tcf_police_act()
274 ptoks = toks + police->tcfp_ptoks; in tcf_police_act()
281 toks += police->tcfp_toks; in tcf_police_act()
282 if (toks > p->tcfp_burst) in tcf_police_act()
283 toks = p->tcfp_burst; in tcf_police_act()
284 toks -= (s64)psched_l2t_ns(&p->rate, qdisc_pkt_len(skb)); in tcf_police_act()
292 if ((toks | ptoks | ppstoks) >= 0) { in tcf_police_act()
294 police->tcfp_toks = toks; in tcf_police_act()
Dsch_tbf.c263 s64 toks; in tbf_dequeue() local
268 toks = min_t(s64, now - q->t_c, q->buffer); in tbf_dequeue()
271 ptoks = toks + q->ptokens; in tbf_dequeue()
276 toks += q->tokens; in tbf_dequeue()
277 if (toks > q->buffer) in tbf_dequeue()
278 toks = q->buffer; in tbf_dequeue()
279 toks -= (s64) psched_l2t_ns(&q->rate, len); in tbf_dequeue()
281 if ((toks|ptoks) >= 0) { in tbf_dequeue()
287 q->tokens = toks; in tbf_dequeue()
296 now + max_t(long, -toks, -ptoks)); in tbf_dequeue()
Dsch_htb.c528 s64 toks; in htb_class_mode() local
530 if ((toks = (cl->ctokens + *diff)) < htb_lowater(cl)) { in htb_class_mode()
531 *diff = -toks; in htb_class_mode()
535 if ((toks = (cl->tokens + *diff)) >= htb_hiwater(cl)) in htb_class_mode()
538 *diff = -toks; in htb_class_mode()
653 s64 toks = diff + cl->tokens; in htb_accnt_tokens() local
655 if (toks > cl->buffer) in htb_accnt_tokens()
656 toks = cl->buffer; in htb_accnt_tokens()
657 toks -= (s64) psched_l2t_ns(&cl->rate, bytes); in htb_accnt_tokens()
658 if (toks <= -cl->mbuffer) in htb_accnt_tokens()
[all …]
/Linux-v5.15/block/
Dsed-opal.c73 struct opal_resp_tok toks[MAX_TOKS]; member
747 tok = &resp->toks[n]; in response_get_token()
886 iter = resp->toks; in response_parse()