Lines Matching refs:rate64
398 u64 rate64 = 0; in tcp_compute_delivery_rate() local
401 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate()
402 do_div(rate64, intv); in tcp_compute_delivery_rate()
404 return rate64; in tcp_compute_delivery_rate()
3705 u64 rate64; in tcp_get_info() local
3716 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3717 info->tcpi_pacing_rate = rate64; in tcp_get_info()
3720 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3721 info->tcpi_max_pacing_rate = rate64; in tcp_get_info()
3803 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info()
3804 if (rate64) in tcp_get_info()
3805 info->tcpi_delivery_rate = rate64; in tcp_get_info()
3873 u64 rate64; in tcp_get_timestamping_opt_stats() local
3892 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_timestamping_opt_stats()
3893 nla_put_u64_64bit(stats, TCP_NLA_PACING_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()
3895 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_timestamping_opt_stats()
3896 nla_put_u64_64bit(stats, TCP_NLA_DELIVERY_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()