Home
last modified time | relevance | path

Searched refs:rate64 (Results 1 – 6 of 6) sorted by relevance

/net/ipv4/
Dtcp_nv.c246 u64 rate64; in tcpnv_acked() local
288 rate64 = ((u64)sample->in_flight) * 80000; in tcpnv_acked()
289 do_div(rate64, avg_rtt ?: 1); in tcpnv_acked()
290 rate = (u32)rate64; in tcpnv_acked()
Dtcp.c402 u64 rate64 = 0; in tcp_compute_delivery_rate() local
405 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate()
406 do_div(rate64, intv); in tcp_compute_delivery_rate()
408 return rate64; in tcp_compute_delivery_rate()
3731 u64 rate64; in tcp_get_info() local
3742 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3743 info->tcpi_pacing_rate = rate64; in tcp_get_info()
3746 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3747 info->tcpi_max_pacing_rate = rate64; in tcp_get_info()
3827 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info()
[all …]
/net/sched/
Dact_police.c65 u64 rate64, prate64; in tcf_police_init() local
179 rate64 = tb[TCA_POLICE_RATE64] ? in tcf_police_init()
181 psched_ratecfg_precompute(&new->rate, &R_tab->rate, rate64); in tcf_police_init()
Dsch_tbf.c348 u64 rate64 = 0, prate64 = 0; in tbf_change() local
374 rate64 = nla_get_u64(tb[TCA_TBF_RATE64]); in tbf_change()
375 psched_ratecfg_precompute(&rate, &qopt->rate, rate64); in tbf_change()
Dsch_htb.c1790 u64 rate64, ceil64; in htb_change_class() local
1841 rate64 = tb[TCA_HTB_RATE64] ? nla_get_u64(tb[TCA_HTB_RATE64]) : 0; in htb_change_class()
1920 .rate = max_t(u64, hopt->rate.rate, rate64), in htb_change_class()
1940 .rate = max_t(u64, hopt->rate.rate, rate64), in htb_change_class()
2024 .rate = max_t(u64, hopt->rate.rate, rate64), in htb_change_class()
2042 psched_ratecfg_precompute(&cl->rate, &hopt->rate, rate64); in htb_change_class()
Dsch_generic.c1458 u64 rate64) in psched_ratecfg_precompute() argument
1463 r->rate_bytes_ps = max_t(u64, conf->rate, rate64); in psched_ratecfg_precompute()