Lines Matching full:mtu
59 one with rate P (peak rate) and depth M (equal to link MTU)
87 Note that the peak rate TBF is much more tough: with MTU 1500
100 s64 buffer; /* Token bucket depth/rate: MUST BE >= MTU/B */
101 s64 mtu; member
227 if (ptoks > q->mtu) in tbf_dequeue()
228 ptoks = q->mtu; in tbf_dequeue()
278 q->ptokens = q->mtu; in tbf_reset()
303 s64 buffer, mtu; in tbf_change() local
327 mtu = min_t(u64, PSCHED_TICKS2NS(qopt->mtu), ~0U); in tbf_change()
354 mtu = psched_l2t_ns(&peak, pburst); in tbf_change()
356 max_size = min_t(u64, max_size, psched_ns_t2l(&peak, mtu)); in tbf_change()
363 pr_warn_ratelimited("sch_tbf: burst %llu is lower than device %s mtu (%u) !\n", in tbf_change()
396 q->mtu = mtu; in tbf_change()
398 q->mtu = PSCHED_TICKS2NS(qopt->mtu); in tbf_change()
405 q->ptokens = q->mtu; in tbf_change()
457 opt.mtu = PSCHED_NS2TICKS(q->mtu); in tbf_dump()