Searched refs:rate64 (Results 1 – 6 of 6) sorted by relevance
/net/ipv4/ |
D | tcp_nv.c | 246 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()
|
D | tcp.c | 402 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/ |
D | act_police.c | 65 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()
|
D | sch_tbf.c | 348 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()
|
D | sch_htb.c | 1790 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()
|
D | sch_generic.c | 1458 u64 rate64) in psched_ratecfg_precompute() argument 1463 r->rate_bytes_ps = max_t(u64, conf->rate, rate64); in psched_ratecfg_precompute()
|