Lines Matching refs:rate64
395 u64 rate64 = 0; in tcp_compute_delivery_rate() local
398 rate64 = (u64)rate * tp->mss_cache * USEC_PER_SEC; in tcp_compute_delivery_rate()
399 do_div(rate64, intv); in tcp_compute_delivery_rate()
401 return rate64; in tcp_compute_delivery_rate()
3370 u64 rate64; in tcp_get_info() local
3381 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3382 info->tcpi_pacing_rate = rate64; in tcp_get_info()
3385 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_info()
3386 info->tcpi_max_pacing_rate = rate64; in tcp_get_info()
3466 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_info()
3467 if (rate64) in tcp_get_info()
3468 info->tcpi_delivery_rate = rate64; in tcp_get_info()
3520 u64 rate64; in tcp_get_timestamping_opt_stats() local
3539 rate64 = (rate != ~0UL) ? rate : ~0ULL; in tcp_get_timestamping_opt_stats()
3540 nla_put_u64_64bit(stats, TCP_NLA_PACING_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()
3542 rate64 = tcp_compute_delivery_rate(tp); in tcp_get_timestamping_opt_stats()
3543 nla_put_u64_64bit(stats, TCP_NLA_DELIVERY_RATE, rate64, TCP_NLA_PAD); in tcp_get_timestamping_opt_stats()