Lines Matching refs:rate64
393 u64 rate64 = 0; in tcp_compute_delivery_rate() local
396 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate()
397 do_div(rate64, intv); in tcp_compute_delivery_rate()
399 return rate64; in tcp_compute_delivery_rate()
3105 u64 rate64; in tcp_get_info() local
3117 rate64 = rate != ~0U ? rate : ~0ULL; in tcp_get_info()
3118 info->tcpi_pacing_rate = rate64; in tcp_get_info()
3121 rate64 = rate != ~0U ? rate : ~0ULL; in tcp_get_info()
3122 info->tcpi_max_pacing_rate = rate64; in tcp_get_info()
3202 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info()
3203 if (rate64) in tcp_get_info()
3204 info->tcpi_delivery_rate = rate64; in tcp_get_info()
3247 u64 rate64; in tcp_get_timestamping_opt_stats() local
3267 rate64 = rate != ~0U ? rate : ~0ULL; in tcp_get_timestamping_opt_stats()
3268 nla_put_u64_64bit(stats, TCP_NLA_PACING_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()
3270 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_timestamping_opt_stats()
3271 nla_put_u64_64bit(stats, TCP_NLA_DELIVERY_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()