Lines Matching refs:rate64
397 u64 rate64 = 0; in tcp_compute_delivery_rate() local
400 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate()
401 do_div(rate64, intv); in tcp_compute_delivery_rate()
403 return rate64; in tcp_compute_delivery_rate()
3463 u64 rate64; in tcp_get_info() local
3474 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3475 info->tcpi_pacing_rate = rate64; in tcp_get_info()
3478 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3479 info->tcpi_max_pacing_rate = rate64; in tcp_get_info()
3559 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info()
3560 if (rate64) in tcp_get_info()
3561 info->tcpi_delivery_rate = rate64; in tcp_get_info()
3613 u64 rate64; in tcp_get_timestamping_opt_stats() local
3632 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_timestamping_opt_stats()
3633 nla_put_u64_64bit(stats, TCP_NLA_PACING_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()
3635 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_timestamping_opt_stats()
3636 nla_put_u64_64bit(stats, TCP_NLA_DELIVERY_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()